Changeset 35374 in vbox for trunk/src/VBox
- Timestamp:
- Dec 30, 2010 2:42:15 PM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 deleted
- 7 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleVRDPServer.h
r34906 r35374 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * VBox Console VRDE Server Helper class and implementation of IVRDEServerInfo 6 4 */ … … 22 20 23 21 #include "RemoteUSBBackend.h" 24 #include <hgcm/HGCM.h>22 #include "HGCM.h" 25 23 26 24 #include <VBox/VBoxAuth.h> -
trunk/src/VBox/Main/include/GuestImpl.h
r35061 r35374 1 1 /** @file 2 *3 2 * VirtualBox COM class implementation 4 3 */ … … 25 24 #ifdef VBOX_WITH_GUEST_CONTROL 26 25 # include <VBox/HostServices/GuestControlSvc.h> 27 # include <hgcm/HGCM.h>26 # include "HGCM.h" 28 27 using namespace guestControl; 29 28 #endif -
trunk/src/VBox/Main/include/HGCMThread.h
r35373 r35374 1 1 /** @file 2 *3 2 * HGCMThread - Host-Guest Communication Manager worker threads header. 4 3 */ … … 21 20 #include <VBox/types.h> 22 21 23 #include <hgcm/HGCMObjects.h>22 #include "HGCMObjects.h" 24 23 25 24 /** A handle for HGCM message. */ -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r35368 r35374 68 68 # include <VBox/com/defs.h> 69 69 # include <VBox/com/array.h> 70 # include <hgcm/HGCM.h>/** @todo it should be possible to register a service70 # include "HGCM.h" /** @todo it should be possible to register a service 71 71 * extension using a VMMDev callback. */ 72 72 # include <vector> -
trunk/src/VBox/Main/src-client/HGCM.cpp
r35368 r35374 19 19 #include "Logging.h" 20 20 21 #include " hgcm/HGCM.h"22 #include " hgcm/HGCMThread.h"21 #include "HGCM.h" 22 #include "HGCMThread.h" 23 23 24 24 #include <VBox/err.h> -
trunk/src/VBox/Main/src-client/HGCMObjects.cpp
r35368 r35374 1 /* $Id$ */ 1 2 /** @file 2 *3 * HGCM (Host-Guest Communication Manager):4 3 * HGCMObjects - Host-Guest Communication Manager objects 5 4 */ 6 5 7 6 /* 8 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2010 Oracle Corporation 9 8 * 10 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 20 19 #include "Logging.h" 21 20 22 #include "hgcm/HGCMObjects.h" 23 24 #include <string.h> 25 21 #include "HGCMObjects.h" 22 23 #include <iprt/string.h> 26 24 #include <VBox/err.h> 27 25 -
trunk/src/VBox/Main/src-client/HGCMThread.cpp
r35368 r35374 1 /* $Id$ */ 1 2 /** @file 2 *3 * HGCM (Host-Guest Communication Manager):4 3 * HGCMThread - Host-Guest Communication Manager Threads 5 4 */ … … 20 19 #include "Logging.h" 21 20 22 #include " hgcm/HGCMThread.h"21 #include "HGCMThread.h" 23 22 24 23 #include <VBox/err.h> -
trunk/src/VBox/Main/src-client/VMMDevInterface.cpp
r35368 r35374 30 30 31 31 #ifdef VBOX_WITH_HGCM 32 # include "hgcm/HGCM.h"33 # include "hgcm/HGCMObjects.h"32 # include "HGCM.h" 33 # include "HGCMObjects.h" 34 34 # if defined(RT_OS_DARWIN) && defined(VBOX_WITH_CROGL) 35 35 # include <VBox/HostServices/VBoxCrOpenGLSvc.h>
Note:
See TracChangeset
for help on using the changeset viewer.