- Timestamp:
- Aug 12, 2008 11:19:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/darwin/iokit.cpp
r11157 r11375 102 102 103 103 104 #ifdef VBOX_WITH_USB105 106 104 /** 107 105 * Checks whether the value exists. … … 231 229 * @param pProcess Where to store the key value. 232 230 */ 233 static bool darwinDictGetProc cess(CFMutableDictionaryRef DictRef, CFStringRef KeyStrRef, PRTPROCESS pProcess)231 static bool darwinDictGetProcess(CFMutableDictionaryRef DictRef, CFStringRef KeyStrRef, PRTPROCESS pProcess) 234 232 { 235 233 switch (sizeof(*pProcess)) … … 499 497 #endif /* helpers for dumping registry dictionaries */ 500 498 499 500 #ifdef VBOX_WITH_USB 501 501 502 502 /** … … 843 843 if (krc == KERN_SUCCESS) 844 844 { 845 fHaveOwner = darwinDictGetProc cess(PropsRef, CFSTR(VBOXUSB_OWNER_KEY), &Owner);846 fHaveClient = darwinDictGetProc cess(PropsRef, CFSTR(VBOXUSB_CLIENT_KEY), &Client);845 fHaveOwner = darwinDictGetProcess(PropsRef, CFSTR(VBOXUSB_OWNER_KEY), &Owner); 846 fHaveClient = darwinDictGetProcess(PropsRef, CFSTR(VBOXUSB_CLIENT_KEY), &Client); 847 847 CFRelease(PropsRef); 848 848 }
Note:
See TracChangeset
for help on using the changeset viewer.