Changeset 11663 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Aug 26, 2008 2:50:16 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/COMDefs.h
r11661 r11663 72 72 # define SUCCEEDED NS_SUCCEEDED 73 73 # define FAILED NS_FAILED 74 #endif /* !RT_OS_WINDOWS */75 74 76 75 #define ComSafeArrayIn(aType, aArg) unsigned aArg##Size, aType *aArg … … 79 78 #define ComSafeArrayAsInParam(aArray) \ 80 79 (aArray).size(), aArray.raw() 80 #else /* !RT_OS_WINDOWS */ 81 #define ComSafeArrayIn(aType, aArg) SAFEARRAY **aArg 82 #define ComSafeArrayInIsNull(aArg) (aArg == NULL || *aArg == NULL) 83 #define ComSafeArrayInArg(aArg) aArg 84 #define ComSafeArrayAsInParam(aArray) (SAFEARRAY **)NULL 85 86 #endif /* !RT_OS_WINDOWS */ 87 81 88 82 89 -
trunk/src/VBox/Frontends/VBoxBFE/KeyboardImpl.cpp
r11661 r11663 25 25 #else 26 26 # include <VBox/com/defs.h> 27 //# include <VBox/com/array.h>27 # include <VBox/com/array.h> 28 28 #endif 29 29 #include <VBox/pdm.h>
Note:
See TracChangeset
for help on using the changeset viewer.