Changeset 469 in vbox for trunk/include/VBox/com/defs.h
- Timestamp:
- Jan 31, 2007 3:57:59 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18067
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/defs.h
r1 r469 89 89 #define IUnknown nsISupports 90 90 91 #define LONG int32_t 92 #define ULONG uint32_t 93 #define LONG64 int64_t 94 #define ULONG64 uint64_t 95 #define USHORT uint16_t 96 #define SHORT int16_t 97 #define BOOL PRBool 91 #define BOOL PRBool 92 #define BYTE PRUint8 93 #define SHORT PRInt16 94 #define USHORT PRUint16 95 #define LONG PRInt32 96 #define ULONG PRUint32 97 #define LONG64 PRInt64 98 #define ULONG64 PRUint64 99 100 #define BSTR PRUnichar * 101 #define LPBSTR BSTR * 102 #define OLECHAR wchar_t 103 98 104 #define FALSE PR_FALSE 99 105 #define TRUE PR_TRUE 100 #define BSTR PRUnichar*101 #define LPBSTR BSTR*102 #define OLECHAR wchar_t103 106 104 107 // makes the name of the getter interface function (n must be capitalized)
Note:
See TracChangeset
for help on using the changeset viewer.