Changeset 6654 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Jan 31, 2008 1:08:43 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27720
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-os2.cpp
r6285 r6654 52 52 #include "VBoxGuestInternal.h" 53 53 #include <VBox/VBoxGuest.h> 54 #include <VBox/VBoxDev.h> /* VMMDEV_RAM_SIZE */ 54 55 #include <VBox/version.h> 55 56 #include <iprt/initterm.h> … … 59 60 #include <iprt/assert.h> 60 61 #include <iprt/log.h> 62 #include <iprt/memobj.h> 63 #include <iprt/mem.h> 64 #include <iprt/param.h> 61 65 62 66 … … 202 206 g_cchInitText = RTStrPrintf(&g_szInitText[0], g_cchInitTextMax, "VBoxGuest.sys: VBoxGuestOS2InitDevExt failed, rc=%Vrc\n", rc); 203 207 204 rc2 = RTR0MemObjFree(g_MemObjMMIO, true /* fFreeMappings */); AssertRC(rc2);208 int rc2 = RTR0MemObjFree(g_MemObjMMIO, true /* fFreeMappings */); AssertRC(rc2); 205 209 g_MemObjMMIO = g_MemMapMMIO = NIL_RTR0MEMOBJ; 206 210 } -
trunk/src/VBox/Additions/common/VBoxGuestLib/Makefile.kmk
r6604 r6654 219 219 # 220 220 VBoxGuestR3LibOS2_TEMPLATE = VBOXOS2GUESTR3LIB 221 VBoxGuestR3LibOS2_SOURCES = VBoxGuestR3Lib.cpp VBoxGuestR3LibClipboard.cpp222 221 VBoxGuestR3LibOS2_DEFS = VBOX_HGCM 222 VBoxGuestR3LibOS2_SOURCES = $(VBoxGuestR3Lib_SOURCES) 223 223 224 224
Note:
See TracChangeset
for help on using the changeset viewer.