Changeset 25288 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Dec 10, 2009 12:30:09 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55835
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/AutoLock.h
r25287 r25288 23 23 #define ____H_AUTOLOCK 24 24 25 #include <iprt/cdefs.h>26 25 #include <iprt/types.h> 27 #include <iprt/critsect.h>28 #include <iprt/thread.h>29 #include <iprt/semaphore.h>30 31 #include <iprt/err.h>32 #include <iprt/assert.h>33 34 #if defined(DEBUG)35 # include <iprt/asm.h> // for ASMReturnAddress36 #endif37 38 #include <iprt/semaphore.h>39 26 40 27 namespace util … … 114 101 115 102 private: 116 RTSEMRW mSemRW; 103 struct Data; 104 Data *m; 117 105 }; 118 106 … … 144 132 145 133 private: 146 mutable RTCRITSECT mCritSect; 134 struct Data; 135 Data *m; 147 136 }; 148 137 -
trunk/src/VBox/Main/include/RemoteUSBBackend.h
r14949 r25288 27 27 #include <VBox/vrdpapi.h> 28 28 #include <VBox/vrdpusb.h> 29 30 #include <iprt/critsect.h> 29 31 30 32 //typedef enum -
trunk/src/VBox/Main/include/VirtualBoxBase.h
r25200 r25288 24 24 25 25 #include <iprt/cdefs.h> 26 #include <iprt/thread.h> 26 27 27 28 #include <list>
Note:
See TracChangeset
for help on using the changeset viewer.