Changeset 6976 in vbox for trunk/include/VBox/com/defs.h
- Timestamp:
- Feb 15, 2008 5:33:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/defs.h
r6963 r6976 55 55 #define NS_DECL_IMACHINECOLLECTION 56 56 #define NS_DECL_IMACHINE 57 58 /** Returns @c true if @a rc represents a warning result code */ 59 #define SUCCEEDED_WARNING(rc) (SUCCEEDED (rc) && (rc) != S_OK) 57 60 58 61 /* input pointer argument to method */ … … 191 194 #define END_COM_MAP(a) 192 195 193 #define HRESULT nsresult 194 #define SUCCEEDED NS_SUCCEEDED 195 #define FAILED NS_FAILED 196 #define NS_NULL nsnull 196 #define HRESULT nsresult 197 #define SUCCEEDED NS_SUCCEEDED 198 #define FAILED NS_FAILED 199 200 #define SUCCEEDED_WARNING(rc) (NS_SUCCEEDED (rc) && (rc) != NS_OK) 197 201 198 202 #define IUnknown nsISupports
Note:
See TracChangeset
for help on using the changeset viewer.