Changeset 21211 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Jul 3, 2009 3:12:24 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49522
- Location:
- trunk/src/VBox/Additions/common/VBoxGuestLib
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/GenericRequest.cpp
r13835 r21211 1 /* $Revision$ */ 1 2 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * Generic VMMDev request management 3 * VBoxGuestLibR0 - Generic VMMDev request management. 5 4 */ 6 5 7 6 /* 8 * Copyright (C) 2006-200 7Sun Microsystems, Inc.7 * Copyright (C) 2006-2009 Sun Microsystems, Inc. 9 8 * 10 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 21 20 */ 22 21 23 #include <VBox/VBoxGuestLib.h>24 22 #include "VBGLInternal.h" 25 23 #include <iprt/asm.h> 24 #include <iprt/assert.h> 26 25 #include <iprt/string.h> 27 #include <iprt/assert.h>28 26 29 27 DECLVBGL(int) VbglGRAlloc (VMMDevRequestHeader **ppReq, uint32_t cbSize, VMMDevRequestType reqType) … … 100 98 VbglPhysHeapFree (pReq); 101 99 } 100 -
trunk/src/VBox/Additions/common/VBoxGuestLib/HGCM.cpp
r14352 r21211 1 /* $Revision$ */ 1 2 /** @file 3 * VBoxGuestLib - Host-Guest Communication Manager. 2 4 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions:4 * Host-Guest Communication Manager5 * These public functions can be only used by other drivers. They all 6 * do an IOCTL to VBoxGuest via IDC. 5 7 */ 6 8 … … 21 23 */ 22 24 23 /* These public functions can be only used by other drivers.24 * They all do an IOCTL to VBoxGuest.25 */26 27 25 /* Entire file is ifdef'ed with !VBGL_VBOXGUEST */ 28 26 #ifndef VBGL_VBOXGUEST 29 27 30 #include <VBox/VBoxGuestLib.h>31 28 #include "VBGLInternal.h" 32 29 … … 204 201 } 205 202 206 #endif /* VBGL_VBOXGUEST */ 203 #endif /* !VBGL_VBOXGUEST */ 204 -
trunk/src/VBox/Additions/common/VBoxGuestLib/HGCMInternal.cpp
r15705 r21211 1 /* $Revision$ */ 1 2 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * Host-Guest Communication Manager internal functions, implemented by VBoxGuest 3 * VBoxGuestLib - Host-Guest Communication Manager internal functions, implemented by VBoxGuest 5 4 */ 6 5 … … 24 23 #ifdef VBGL_VBOXGUEST 25 24 26 #include <VBox/VBoxGuestLib.h>27 25 #include "VBGLInternal.h" 28 26 #include <iprt/string.h> … … 454 452 455 453 #endif /* VBGL_VBOXGUEST */ 454 -
trunk/src/VBox/Additions/common/VBoxGuestLib/Init.cpp
r13835 r21211 1 /* $Revision$ */ 1 2 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * Library initialization 3 * VBoxGuestLibR0 - Library initialization. 5 4 */ 6 5 … … 22 21 23 22 24 #include <VBox/VBoxGuestLib.h>25 26 23 #define VBGL_DECL_DATA 27 24 #include "VBGLInternal.h" -
trunk/src/VBox/Additions/common/VBoxGuestLib/PhysHeap.cpp
r14297 r21211 1 /* $Revision$ */ 1 2 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * Physical memory heap 3 * VBoxGuestLibR0 - Physical memory heap. 5 4 */ 6 5 … … 21 20 */ 22 21 23 #include <VBox/VBoxGuestLib.h>24 22 #include "VBGLInternal.h" 25 23 … … 628 626 RTSemFastMutexDestroy(g_vbgldata.mutexHeap); 629 627 } 628 -
trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.cpp
r21069 r21211 1 1 /* $Revision$ */ 2 2 /** @file 3 * VBoxGuestLib - IDC with VBoxGuest and HGCM helpers.3 * VBoxGuestLibR0 - IDC with VBoxGuest and HGCM helpers. 4 4 */ 5 5 … … 345 345 346 346 #endif /* !VBGL_VBOXGUEST */ 347 -
trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.h
r20374 r21211 1 /* $Revision$ */ 1 2 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * System dependent helpers internal header 3 * VBoxGuestLibR0 - System dependent helpers internal header. 5 4 */ 6 5 … … 21 20 */ 22 21 23 #ifndef __ SYSHLP__H24 #define __ SYSHLP__H22 #ifndef __VBoxGuestLib_SysHlp_h 23 #define __VBoxGuestLib_SysHlp_h 25 24 26 25 #ifdef RT_OS_WINDOWS … … 108 107 #endif 109 108 110 #endif /* __SYSHLP__H */ 109 #endif /* !__VBoxGuestLib_SysHlp_h */ 110 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBGLInternal.h
r14217 r21211 1 /* $Revision$ */ 1 2 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * Internal header 3 * VBoxGuestLibR0 - Internal header. 5 4 */ 6 5 … … 21 20 */ 22 21 23 #ifndef __VB GLINTERNAL__H24 #define __VB GLINTERNAL__H22 #ifndef __VBoxGuestLib_VBGLInternal_h 23 #define __VBoxGuestLib_VBGLInternal_h 25 24 26 25 /* I have added this include here as … … 34 33 #include <VBox/log.h> 35 34 35 /** @todo dprintf() -> Log() */ 36 36 #if (defined(DEBUG) && !defined(NO_LOGGING)) || defined(LOG_ENABLED) 37 37 # define dprintf(a) RTLogBackdoorPrintf a … … 118 118 #endif 119 119 120 #endif /* __VBGLINTERNAL__H */ 120 #endif /* !__VBoxGuestLib_VBGLInternal_h */ 121 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBGLR3Internal.h
r20374 r21211 23 23 #define ___VBGLR3Internal_h 24 24 25 #if defined(RT_OS_WINDOWS) 25 #if defined(RT_OS_WINDOWS) /** @todo explain why this is here. */ 26 26 # include <Windows.h> 27 27 #endif 28 28 #include <VBox/VBoxGuest.h> 29 #include <VBox/VBoxGuestLib.h> 29 30 30 31 RT_C_DECLS_BEGIN … … 96 97 97 98 #endif 99 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxCalls.c
r13835 r21211 1 /* $Revision$ */ 1 2 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * Central calls 3 * VBoxGuestLibR0 - Central calls. 5 4 */ 6 5 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxCalls.h
r20374 r21211 1 1 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * Central calls header 2 * VBoxGuestLib - Central calls header. 5 3 */ 6 4 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestLog.h
r8155 r21211 1 1 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * Guest Logging facility 2 * VBoxGuestLibR0 - Guest Logging facility. 5 3 */ 6 4 … … 24 22 #define __VBOXGUESTLOG__H 25 23 26 #if defined(RT_OS_LINUX)24 #ifndef RT_OS_WINDOWS 27 25 28 26 /* Since I don't know the background for the stuff below, I prefer not to 29 27 change it. I don't need it or want it for backdoor logging inside the 30 28 Linux Guest Additions kernel modules though. */ 29 /* Update: bird made this the stance on all non-windows platforms. */ 31 30 # include <VBox/log.h> 32 31 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp
r21201 r21211 44 44 #endif 45 45 46 #include <iprt/assert.h> 47 #include <iprt/asm.h> 48 #include <iprt/file.h> 46 49 #include <iprt/time.h> 47 #include <iprt/asm.h>48 50 #include <iprt/string.h> 49 #include <iprt/file.h>50 #include <iprt/assert.h>51 51 #include <iprt/thread.h> 52 #include <VBox/VBoxGuest.h>53 52 #include <VBox/log.h> 54 53 #include "VBGLR3Internal.h" -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibClipboard.cpp
r17999 r21211 25 25 *******************************************************************************/ 26 26 #include <VBox/HostServices/VBoxClipboardSvc.h> 27 #include < VBox/VBoxGuest.h>27 #include <iprt/assert.h> 28 28 #include <iprt/string.h> 29 #include <iprt/assert.h>30 29 #include "VBGLR3Internal.h" 31 32 33 30 34 31 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDaemonize.cpp
r18526 r21211 49 49 #endif 50 50 51 #include <iprt/string.h>52 51 #include <iprt/file.h> 53 52 #include <iprt/process.h> 54 #include <VBox/VBoxGuest.h> 53 #include <iprt/string.h> 54 #include "VBGLR3Internal.h" 55 55 56 56 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGR.cpp
r10553 r21211 38 38 #endif 39 39 #include <iprt/err.h> 40 #include <VBox/VBoxGuest.h>41 40 #include "VBGLR3Internal.h" 42 41 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestProp.cpp
r21198 r21211 1 1 /* $Id$ */ 2 2 /** @file 3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, 4 * guest properties. 3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, guest properties. 5 4 */ 6 5 … … 42 41 * Structure containing information needed to enumerate through guest 43 42 * properties. 43 * 44 * @remarks typedef in VBoxGuestLib.h. 44 45 */ 45 46 struct VBGLR3GUESTPROPENUM -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibMisc.cpp
r10638 r21211 28 28 29 29 #include "VBGLR3Internal.h" 30 30 31 31 32 /** -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibSeamless.cpp
r8155 r21211 1 /* *$Id$ */1 /* $Id$ */ 2 2 /** @file 3 3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Seamless mode. … … 27 27 #include <iprt/string.h> 28 28 29 #include <VBox/VBoxGuest.h>30 29 #include <VBox/VBoxDev.h> 31 30 #include <VBox/log.h> 32 31 33 32 #include "VBGLR3Internal.h" 33 34 34 35 35 /** … … 51 51 vmmreqGuestCaps.caps = fState ? VMMDEV_GUEST_SUPPORTS_SEAMLESS : 0; 52 52 rc = vbglR3GRPerform(&vmmreqGuestCaps.header); 53 #ifdef DEBUG 53 #ifdef DEBUG /** @todo r=bird: Why the LogRel here? */ 54 54 if (RT_SUCCESS(rc)) 55 55 LogRel(("Successfully set the seamless capability on the host.\n")); -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibTime.cpp
r8155 r21211 1 /* *$Id$ */1 /* $Id$ */ 2 2 /** @file 3 3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Time. -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibVideo.cpp
r18309 r21211 1 /* $Id $ */1 /* $Id:$ */ 2 2 /** @file 3 3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Video. … … 5 5 6 6 /* 7 * Copyright (C) 2007 Sun Microsystems, Inc.7 * Copyright (C) 2007-2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 24 24 * Header Files * 25 25 *******************************************************************************/ 26 #include <iprt/assert.h> 27 #include <iprt/mem.h> 26 28 #include <iprt/string.h> 27 #include <iprt/mem.h>28 #include <iprt/assert.h>29 29 #include <VBox/log.h> 30 30 #include <VBox/HostServices/GuestPropertySvc.h> /* For Save and RetrieveVideoMode */ -
trunk/src/VBox/Additions/common/VBoxGuestLib/VMMDev.cpp
r13835 r21211 1 1 /** @file 2 * 3 * VBoxGuestLib - A support library for VirtualBox guest additions: 4 * VMMDev device related functions 2 * VBoxGuestLibR0 - VMMDev device related functions. 5 3 */ 6 4 … … 21 19 */ 22 20 23 #include <VBox/VBoxGuestLib.h>24 21 #include "VBGLInternal.h" 25 22 … … 39 36 return rc; 40 37 } 38
Note:
See TracChangeset
for help on using the changeset viewer.