VirtualBox

Ignore:
Timestamp:
Jul 3, 2009 3:12:24 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
49522
Message:

VBoxGuest.h,VBoxGuestLib: Moved the VbglR3 API out of VBoxGuest.h and did some cleanup.

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$ */
    12/** @file
    2  *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * Generic VMMDev request management
     3 * VBoxGuestLibR0 - Generic VMMDev request management.
    54 */
    65
    76/*
    8  * Copyright (C) 2006-2007 Sun Microsystems, Inc.
     7 * Copyright (C) 2006-2009 Sun Microsystems, Inc.
    98 *
    109 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    2120 */
    2221
    23 #include <VBox/VBoxGuestLib.h>
    2422#include "VBGLInternal.h"
    2523#include <iprt/asm.h>
     24#include <iprt/assert.h>
    2625#include <iprt/string.h>
    27 #include <iprt/assert.h>
    2826
    2927DECLVBGL(int) VbglGRAlloc (VMMDevRequestHeader **ppReq, uint32_t cbSize, VMMDevRequestType reqType)
     
    10098    VbglPhysHeapFree (pReq);
    10199}
     100
  • trunk/src/VBox/Additions/common/VBoxGuestLib/HGCM.cpp

    r14352 r21211  
     1/* $Revision$ */
    12/** @file
     3 * VBoxGuestLib - Host-Guest Communication Manager.
    24 *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * Host-Guest Communication Manager
     5 * These public functions can be only used by other drivers. They all
     6 * do an IOCTL to VBoxGuest via IDC.
    57 */
    68
     
    2123 */
    2224
    23 /* These public functions can be only used by other drivers.
    24  * They all do an IOCTL to VBoxGuest.
    25  */
    26 
    2725/* Entire file is ifdef'ed with !VBGL_VBOXGUEST */
    2826#ifndef VBGL_VBOXGUEST
    2927
    30 #include <VBox/VBoxGuestLib.h>
    3128#include "VBGLInternal.h"
    3229
     
    204201}
    205202
    206 #endif /* VBGL_VBOXGUEST */
     203#endif /* !VBGL_VBOXGUEST */
     204
  • trunk/src/VBox/Additions/common/VBoxGuestLib/HGCMInternal.cpp

    r15705 r21211  
     1/* $Revision$ */
    12/** @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
    54 */
    65
     
    2423#ifdef VBGL_VBOXGUEST
    2524
    26 #include <VBox/VBoxGuestLib.h>
    2725#include "VBGLInternal.h"
    2826#include <iprt/string.h>
     
    454452
    455453#endif /* VBGL_VBOXGUEST */
     454
  • trunk/src/VBox/Additions/common/VBoxGuestLib/Init.cpp

    r13835 r21211  
     1/* $Revision$ */
    12/** @file
    2  *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * Library initialization
     3 * VBoxGuestLibR0 - Library initialization.
    54 */
    65
     
    2221
    2322
    24 #include <VBox/VBoxGuestLib.h>
    25 
    2623#define VBGL_DECL_DATA
    2724#include "VBGLInternal.h"
  • trunk/src/VBox/Additions/common/VBoxGuestLib/PhysHeap.cpp

    r14297 r21211  
     1/* $Revision$ */
    12/** @file
    2  *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * Physical memory heap
     3 * VBoxGuestLibR0 - Physical memory heap.
    54 */
    65
     
    2120 */
    2221
    23 #include <VBox/VBoxGuestLib.h>
    2422#include "VBGLInternal.h"
    2523
     
    628626    RTSemFastMutexDestroy(g_vbgldata.mutexHeap);
    629627}
     628
  • trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.cpp

    r21069 r21211  
    11/* $Revision$ */
    22/** @file
    3  * VBoxGuestLib - IDC with VBoxGuest and HGCM helpers.
     3 * VBoxGuestLibR0 - IDC with VBoxGuest and HGCM helpers.
    44 */
    55
     
    345345
    346346#endif /* !VBGL_VBOXGUEST */
     347
  • trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.h

    r20374 r21211  
     1/* $Revision$ */
    12/** @file
    2  *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * System dependent helpers internal header
     3 * VBoxGuestLibR0 - System dependent helpers internal header.
    54 */
    65
     
    2120 */
    2221
    23 #ifndef __SYSHLP__H
    24 #define __SYSHLP__H
     22#ifndef __VBoxGuestLib_SysHlp_h
     23#define __VBoxGuestLib_SysHlp_h
    2524
    2625#ifdef RT_OS_WINDOWS
     
    108107#endif
    109108
    110 #endif /* __SYSHLP__H */
     109#endif /* !__VBoxGuestLib_SysHlp_h */
     110
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBGLInternal.h

    r14217 r21211  
     1/* $Revision$ */
    12/** @file
    2  *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * Internal header
     3 * VBoxGuestLibR0 - Internal header.
    54 */
    65
     
    2120 */
    2221
    23 #ifndef __VBGLINTERNAL__H
    24 #define __VBGLINTERNAL__H
     22#ifndef __VBoxGuestLib_VBGLInternal_h
     23#define __VBoxGuestLib_VBGLInternal_h
    2524
    2625/* I have added this include here as
     
    3433#include <VBox/log.h>
    3534
     35/** @todo dprintf() -> Log() */
    3636#if (defined(DEBUG) && !defined(NO_LOGGING)) || defined(LOG_ENABLED)
    3737# define dprintf(a) RTLogBackdoorPrintf a
     
    118118#endif
    119119
    120 #endif /* __VBGLINTERNAL__H */
     120#endif /* !__VBoxGuestLib_VBGLInternal_h */
     121
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBGLR3Internal.h

    r20374 r21211  
    2323#define ___VBGLR3Internal_h
    2424
    25 #if defined(RT_OS_WINDOWS)
     25#if defined(RT_OS_WINDOWS) /** @todo explain why this is here. */
    2626# include <Windows.h>
    2727#endif
    2828#include <VBox/VBoxGuest.h>
     29#include <VBox/VBoxGuestLib.h>
    2930
    3031RT_C_DECLS_BEGIN
     
    9697
    9798#endif
     99
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxCalls.c

    r13835 r21211  
     1/* $Revision$ */
    12/** @file
    2  *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * Central calls
     3 * VBoxGuestLibR0 - Central calls.
    54 */
    65
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxCalls.h

    r20374 r21211  
    11/** @file
    2  *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * Central calls header
     2 * VBoxGuestLib - Central calls header.
    53 */
    64
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestLog.h

    r8155 r21211  
    11/** @file
    2  *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * Guest Logging facility
     2 * VBoxGuestLibR0 - Guest Logging facility.
    53 */
    64
     
    2422#define __VBOXGUESTLOG__H
    2523
    26 #if defined(RT_OS_LINUX)
     24#ifndef RT_OS_WINDOWS
    2725
    2826/* Since I don't know the background for the stuff below, I prefer not to
    2927   change it.  I don't need it or want it for backdoor logging inside the
    3028   Linux Guest Additions kernel modules though. */
     29/* Update: bird made this the stance on all non-windows platforms. */
    3130# include <VBox/log.h>
    3231
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp

    r21201 r21211  
    4444#endif
    4545
     46#include <iprt/assert.h>
     47#include <iprt/asm.h>
     48#include <iprt/file.h>
    4649#include <iprt/time.h>
    47 #include <iprt/asm.h>
    4850#include <iprt/string.h>
    49 #include <iprt/file.h>
    50 #include <iprt/assert.h>
    5151#include <iprt/thread.h>
    52 #include <VBox/VBoxGuest.h>
    5352#include <VBox/log.h>
    5453#include "VBGLR3Internal.h"
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibClipboard.cpp

    r17999 r21211  
    2525*******************************************************************************/
    2626#include <VBox/HostServices/VBoxClipboardSvc.h>
    27 #include <VBox/VBoxGuest.h>
     27#include <iprt/assert.h>
    2828#include <iprt/string.h>
    29 #include <iprt/assert.h>
    3029#include "VBGLR3Internal.h"
    31 
    32 
    3330
    3431
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDaemonize.cpp

    r18526 r21211  
    4949#endif
    5050
    51 #include <iprt/string.h>
    5251#include <iprt/file.h>
    5352#include <iprt/process.h>
    54 #include <VBox/VBoxGuest.h>
     53#include <iprt/string.h>
     54#include "VBGLR3Internal.h"
    5555
    5656
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGR.cpp

    r10553 r21211  
    3838#endif
    3939#include <iprt/err.h>
    40 #include <VBox/VBoxGuest.h>
    4140#include "VBGLR3Internal.h"
    4241
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestProp.cpp

    r21198 r21211  
    11/* $Id$ */
    22/** @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.
    54 */
    65
     
    4241 * Structure containing information needed to enumerate through guest
    4342 * properties.
     43 *
     44 * @remarks typedef in VBoxGuestLib.h.
    4445 */
    4546struct VBGLR3GUESTPROPENUM
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibMisc.cpp

    r10638 r21211  
    2828
    2929#include "VBGLR3Internal.h"
     30
    3031
    3132/**
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibSeamless.cpp

    r8155 r21211  
    1 /** $Id$ */
     1/* $Id$ */
    22/** @file
    33 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Seamless mode.
     
    2727#include <iprt/string.h>
    2828
    29 #include <VBox/VBoxGuest.h>
    3029#include <VBox/VBoxDev.h>
    3130#include <VBox/log.h>
    3231
    3332#include "VBGLR3Internal.h"
     33
    3434
    3535/**
     
    5151    vmmreqGuestCaps.caps = fState ? VMMDEV_GUEST_SUPPORTS_SEAMLESS : 0;
    5252    rc = vbglR3GRPerform(&vmmreqGuestCaps.header);
    53 #ifdef DEBUG
     53#ifdef DEBUG /** @todo r=bird: Why the LogRel here? */
    5454    if (RT_SUCCESS(rc))
    5555        LogRel(("Successfully set the seamless capability on the host.\n"));
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibTime.cpp

    r8155 r21211  
    1 /** $Id$ */
     1/* $Id$ */
    22/** @file
    33 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Time.
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibVideo.cpp

    r18309 r21211  
    1 /* $Id$ */
     1/* $Id:$ */
    22/** @file
    33 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Video.
     
    55
    66/*
    7  * Copyright (C) 2007 Sun Microsystems, Inc.
     7 * Copyright (C) 2007-2009 Sun Microsystems, Inc.
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    2424*   Header Files                                                               *
    2525*******************************************************************************/
     26#include <iprt/assert.h>
     27#include <iprt/mem.h>
    2628#include <iprt/string.h>
    27 #include <iprt/mem.h>
    28 #include <iprt/assert.h>
    2929#include <VBox/log.h>
    3030#include <VBox/HostServices/GuestPropertySvc.h>  /* For Save and RetrieveVideoMode */
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VMMDev.cpp

    r13835 r21211  
    11/** @file
    2  *
    3  * VBoxGuestLib - A support library for VirtualBox guest additions:
    4  * VMMDev device related functions
     2 * VBoxGuestLibR0 - VMMDev device related functions.
    53 */
    64
     
    2119 */
    2220
    23 #include <VBox/VBoxGuestLib.h>
    2421#include "VBGLInternal.h"
    2522
     
    3936    return rc;
    4037}
     38
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette