Changeset 3668 in vbox for trunk/src/VBox/Main/include/VirtualBoxImpl.h
- Timestamp:
- Jul 17, 2007 8:56:37 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22944
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r3480 r3668 34 34 #include <map> 35 35 36 #ifdef __WIN__36 #ifdef RT_OS_WINDOWS 37 37 #include "win32/resource.h" 38 38 #endif … … 56 56 class SystemProperties; 57 57 58 #ifdef __WIN__58 #ifdef RT_OS_WINDOWS 59 59 class SVCHlpClient; 60 60 #endif … … 67 67 public VirtualBoxSupportErrorInfoImpl <VirtualBox, IVirtualBox>, 68 68 public VirtualBoxSupportTranslation <VirtualBox>, 69 #ifdef __WIN__69 #ifdef RT_OS_WINDOWS 70 70 public IDispatchImpl<IVirtualBox, &IID_IVirtualBox, &LIBID_VirtualBox, 71 71 kTypeLibraryMajorVersion, kTypeLibraryMinorVersion>, … … 186 186 HRESULT removeProgress (INPTR GUIDPARAM aId); 187 187 188 #ifdef __WIN__188 #ifdef RT_OS_WINDOWS 189 189 typedef DECLCALLBACKPTR (HRESULT, SVCHelperClientFunc) 190 190 (SVCHlpClient *aClient, Progress *aProgress, void *aUser, int *aVrc); … … 354 354 { 355 355 ClientWatcherData() 356 #if defined( __WIN__)356 #if defined(RT_OS_WINDOWS) 357 357 : mUpdateReq (NULL) 358 #elif defined( __OS2__)358 #elif defined(RT_OS_OS2) 359 359 : mUpdateReq (NIL_RTSEMEVENT) 360 360 #elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER) … … 366 366 367 367 // const objects not requiring locking 368 #if defined( __WIN__)368 #if defined(RT_OS_WINDOWS) 369 369 const HANDLE mUpdateReq; 370 #elif defined( __OS2__)370 #elif defined(RT_OS_OS2) 371 371 const RTSEMEVENT mUpdateReq; 372 372 #elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER) … … 393 393 static DECLCALLBACK(int) AsyncEventHandler (RTTHREAD thread, void *pvUser); 394 394 395 #ifdef __WIN__395 #ifdef RT_OS_WINDOWS 396 396 static DECLCALLBACK(int) SVCHelperClientThread (RTTHREAD aThread, void *aUser); 397 397 #endif
Note:
See TracChangeset
for help on using the changeset viewer.