Changeset 34421 in vbox
- Timestamp:
- Nov 26, 2010 5:44:43 PM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/VirtualBoxClientImpl.cpp
r34417 r34421 78 78 int vrc = RTSemEventCreate(&mData.m_SemEvWatcher); 79 79 AssertRC(vrc); 80 if (RT_SUCCESS( rc))80 if (RT_SUCCESS(vrc)) 81 81 { 82 82 vrc = RTThreadCreate(&mData.m_ThreadWatcher, SVCWatcherThread, -
trunk/src/VBox/Main/include/VirtualBoxClientImpl.h
r34416 r34421 23 23 #include "EventImpl.h" 24 24 25 #ifdef RT_OS_WINDOWS 26 # include "win/resource.h" 27 #endif 28 25 29 class ATL_NO_VTABLE VirtualBoxClient : 26 30 public VirtualBoxBase, … … 36 40 DECLARE_CLASSFACTORY_SINGLETON(VirtualBoxClient) 37 41 38 DECLARE_REGISTRY_RESOURCE (IDR_VIRTUALBOX)42 DECLARE_REGISTRY_RESOURCEID(IDR_VIRTUALBOX) 39 43 DECLARE_NOT_AGGREGATABLE(VirtualBoxClient) 40 44
Note:
See TracChangeset
for help on using the changeset viewer.