Changeset 50359 in vbox
- Timestamp:
- Feb 7, 2014 2:41:59 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/xpcom/server.h
r50355 r50359 35 35 36 36 #endif /* ____H_LINUX_SERVER */ 37 HRESULT VirtualBox_GetInterfacesHelper() { return S_OK; } 37 38 /** 39 * Implements NSGetInterfacesProcPtr (nsIGenericFactory.h) 40 * @note: declaration in nsIGenericFactory.h asks for zeroing 41 * count and array, if returning of list of interfaces isn't supported. 42 */ 43 HRESULT VirtualBox_GetInterfacesHelper(PRUint32 *count, nsIID** *array) 44 { 45 if (count != NULL) *count = 0; 46 if (array != NULL) *array = NULL; 47 48 return S_OK; 49 } 38 50 nsIClassInfo* VirtualBox_classInfoGlobal;
Note:
See TracChangeset
for help on using the changeset viewer.