Changeset 9332 in vbox
- Timestamp:
- Jun 2, 2008 11:10:25 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
include/VBox/com/Guid.h (modified) (1 diff)
-
include/VBox/com/defs.h (modified) (2 diffs)
-
include/VBox/com/ptr.h (modified) (4 diffs)
-
include/VBox/com/string.h (modified) (1 diff)
-
src/VBox/Main/MachineImpl.cpp (modified) (1 diff)
-
src/VBox/Main/xpcom/module.cpp (modified) (2 diffs)
-
src/VBox/Main/xpcom/server.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/Guid.h
r8155 r9332 33 33 #ifndef ___VBox_com_Guid_h 34 34 #define ___VBox_com_Guid_h 35 36 /* Make sure all the stdint.h macros are included - must come first! */ 37 #ifndef __STDC_LIMIT_MACROS 38 # define __STDC_LIMIT_MACROS 39 #endif 40 #ifndef __STDC_CONSTANT_MACROS 41 # define __STDC_CONSTANT_MACROS 42 #endif 35 43 36 44 #if defined (VBOX_WITH_XPCOM) -
trunk/include/VBox/com/defs.h
r8266 r9332 31 31 #ifndef ___VBox_com_defs_h 32 32 #define ___VBox_com_defs_h 33 34 /* Make sure all the stdint.h macros are included - must come first! */ 35 #ifndef __STDC_LIMIT_MACROS 36 # define __STDC_LIMIT_MACROS 37 #endif 38 #ifndef __STDC_CONSTANT_MACROS 39 # define __STDC_CONSTANT_MACROS 40 #endif 33 41 34 42 #if defined (RT_OS_OS2) … … 179 187 180 188 #if defined (RT_OS_DARWIN) || (defined (QT_VERSION) && (QT_VERSION >= 0x040000)) 181 /* CFBase.h defines these & 189 /* CFBase.h defines these & 182 190 * qglobal.h from Qt4 defines these */ 183 191 # undef FALSE -
trunk/include/VBox/com/ptr.h
r8155 r9332 32 32 #define ___VBox_com_ptr_h 33 33 34 /* Make sure all the stdint.h macros are included - must come first! */ 35 #ifndef __STDC_LIMIT_MACROS 36 # define __STDC_LIMIT_MACROS 37 #endif 38 #ifndef __STDC_CONSTANT_MACROS 39 # define __STDC_CONSTANT_MACROS 40 #endif 41 34 42 #if !defined (VBOX_WITH_XPCOM) 35 43 … … 38 46 #ifndef _ATL_IIDOF 39 47 # define _ATL_IIDOF(c) __uuidof(c) 40 #endif 48 #endif 41 49 42 50 #else /* !defined (VBOX_WITH_XPCOM) */ … … 85 93 /** 86 94 * Returns @c true if two interface pointers are equal. 87 * 95 * 88 96 * According to the COM Identity Rule, interface pointers are considered to be 89 97 * equal if and only if IUnknown pointers queried on these interfaces pointers 90 98 * are equal (e.g. have the same binary value). Equal interface pointers 91 99 * represent the same object even if they are pointers to different interfaces. 92 * 100 * 93 101 * @param I1 Class of the first interface pointer (must be derived from 94 102 * IUnknown). … … 145 153 } 146 154 147 /** 155 /** 148 156 * Base template for smart COM pointers. Not intended to be used directly. 149 157 */ -
trunk/include/VBox/com/string.h
r8155 r9332 34 34 #define ___VBox_com_string_h 35 35 36 /* Make sure all the stdint.h macros are included - must come first! */ 37 #ifndef __STDC_LIMIT_MACROS 38 # define __STDC_LIMIT_MACROS 39 #endif 40 #ifndef __STDC_CONSTANT_MACROS 41 # define __STDC_CONSTANT_MACROS 42 #endif 43 36 44 #if defined (VBOX_WITH_XPCOM) 37 # include <nsMemory.h>45 # include <nsMemory.h> 38 46 #endif 39 47 -
trunk/src/VBox/Main/MachineImpl.cpp
r8744 r9332 19 19 * additional information or have any questions. 20 20 */ 21 22 /* Make sure all the stdint.h macros are included - must come first! */ 23 #ifndef __STDC_LIMIT_MACROS 24 # define __STDC_LIMIT_MACROS 25 #endif 26 #ifndef __STDC_CONSTANT_MACROS 27 # define __STDC_CONSTANT_MACROS 28 #endif 21 29 22 30 #if defined(RT_OS_WINDOWS) -
trunk/src/VBox/Main/xpcom/module.cpp
r8768 r9332 19 19 * additional information or have any questions. 20 20 */ 21 22 /* Make sure all the stdint.h macros are included - must come first! */ 23 #ifndef __STDC_LIMIT_MACROS 24 # define __STDC_LIMIT_MACROS 25 #endif 26 #ifndef __STDC_CONSTANT_MACROS 27 # define __STDC_CONSTANT_MACROS 28 #endif 21 29 22 30 #include <nsIGenericFactory.h> … … 134 142 135 143 136 /** 144 /** 137 145 * Component definition table. 138 146 * Lists all components defined in this module. -
trunk/src/VBox/Main/xpcom/server.cpp
r8768 r9332 19 19 * additional information or have any questions. 20 20 */ 21 22 /* Make sure all the stdint.h macros are included - must come first! */ 23 #ifndef __STDC_LIMIT_MACROS 24 # define __STDC_LIMIT_MACROS 25 #endif 26 #ifndef __STDC_CONSTANT_MACROS 27 # define __STDC_CONSTANT_MACROS 28 #endif 21 29 22 30 #include <ipcIService.h>
Note:
See TracChangeset
for help on using the changeset viewer.

