Changeset 21218 in vbox
- Timestamp:
- Jul 5, 2009 1:31:56 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49535
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r18509 r21218 1 1 /** $Id$ */ 2 2 /** @file 3 * VBoxControl - Guest Additions Command Line Management Interface 3 * VBoxControl - Guest Additions Command Line Management Interface. 4 4 */ 5 5 … … 20 20 */ 21 21 22 23 24 22 /******************************************************************************* 25 23 * Header Files * 26 24 *******************************************************************************/ 25 #include <iprt/alloca.h> 26 #include <iprt/autores.h> 27 #include <iprt/initterm.h> 27 28 #include <iprt/mem.h> 29 #include <iprt/path.h> 28 30 #include <iprt/string.h> 29 31 #include <iprt/stream.h> 30 #include <iprt/path.h>31 #include <iprt/initterm.h>32 #include <iprt/autores.h>33 32 #include <VBox/log.h> 34 #include <VBox/VBoxGuest.h>35 33 #include <VBox/version.h> 34 #include <VBox/VBoxGuestLib.h> 36 35 #ifdef RT_OS_WINDOWS 37 # include <windows.h> 38 # include <malloc.h> /* for alloca */ 36 # include <Windows.h> 39 37 #endif 40 38 #ifdef VBOX_WITH_GUEST_PROPS … … 1435 1433 return rc; 1436 1434 } 1435 -
trunk/src/VBox/Additions/common/VBoxControl/testcase/tstVBoxControl.cpp
r14233 r21218 25 25 * Header Files * 26 26 *******************************************************************************/ 27 #include <iprt/autores.h> 28 #include <iprt/initterm.h> 27 29 #include <iprt/mem.h> 30 #include <iprt/path.h> 31 #include <iprt/stream.h> 28 32 #include <iprt/string.h> 29 #include <iprt/stream.h>30 #include <iprt/path.h>31 #include <iprt/initterm.h>32 #include <iprt/autores.h>33 33 #include <VBox/log.h> 34 #include <VBox/VBoxGuest.h>35 34 #include <VBox/version.h> 35 #include <VBox/VBoxGuestLib.h> 36 36 #ifdef VBOX_WITH_GUEST_PROPS 37 37 # include <VBox/HostServices/GuestPropertySvc.h> -
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r21165 r21218 38 38 #include <iprt/path.h> 39 39 #include <VBox/log.h> 40 #include <VBox/VBoxGuest .h>40 #include <VBox/VBoxGuestLib.h> 41 41 #include "VBoxServiceInternal.h" 42 42 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceClipboard-os2.cpp
r19374 r21218 37 37 #include <iprt/assert.h> 38 38 #include <iprt/asm.h> 39 #include <VBox/VBoxGuest .h>39 #include <VBox/VBoxGuestLib.h> 40 40 #include <VBox/HostServices/VBoxClipboardSvc.h> 41 41 #include "VBoxServiceInternal.h" -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceTimeSync.cpp
r21163 r21218 99 99 #include <iprt/time.h> 100 100 #include <iprt/assert.h> 101 #include <VBox/VBoxGuest .h>101 #include <VBox/VBoxGuestLib.h> 102 102 #include "VBoxServiceInternal.h" 103 103 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceUtils.cpp
r19644 r21218 1 2 1 /* $Id$ */ 3 2 /** @file … … 26 25 *******************************************************************************/ 27 26 #ifdef RT_OS_WINDOWS 28 # include <windows.h>27 # include <Windows.h> 29 28 #endif 30 29 … … 33 32 #include <iprt/string.h> 34 33 35 #include <VBox/VBoxGuest .h>34 #include <VBox/VBoxGuestLib.h> 36 35 #include "VBoxServiceInternal.h" 37 36 … … 53 52 { 54 53 rc = RTStrCurrentCPToUtf8(&pszValueTemp, pszValue); 55 if (!RT_SUCCESS(rc)) 54 if (!RT_SUCCESS(rc)) 56 55 { 57 56 VBoxServiceError("vboxVMInfoThread: Failed to convert the value name \"%s\" to Utf8! Error: %Rrc\n", pszValue, rc); … … 92 91 #ifdef RT_OS_WINDOWS 93 92 /** @todo Use TCHAR here instead of LPC*STR crap. */ 94 BOOL VboxServiceGetFileString(LPCWSTR pszFileName, 95 LPWSTR pszBlock, 96 LPWSTR pszString, 93 BOOL VboxServiceGetFileString(LPCWSTR pszFileName, 94 LPWSTR pszBlock, 95 LPWSTR pszString, 97 96 PUINT puiSize) 98 97 { … … 149 148 150 149 BOOL VboxServiceGetFileVersion(LPCWSTR pszFileName, 151 DWORD* pdwMajor, 152 DWORD* pdwMinor, 153 DWORD* pdwBuildNumber, 150 DWORD* pdwMajor, 151 DWORD* pdwMinor, 152 DWORD* pdwBuildNumber, 154 153 DWORD* pdwRevisionNumber) 155 154 { … … 233 232 } 234 233 #endif /* !RT_OS_WINDOWS */ 234 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r21166 r21218 52 52 #include <iprt/time.h> 53 53 #include <iprt/assert.h> 54 #include <VBox/VBoxGuest .h>54 #include <VBox/VBoxGuestLib.h> 55 55 #include "VBoxServiceInternal.h" 56 56 #include "VBoxServiceUtils.h" -
trunk/src/VBox/Additions/x11/VBoxClient/autoresize.cpp
r18994 r21218 30 30 31 31 #include <iprt/assert.h> 32 #include <iprt/err.h> 32 33 #include <iprt/thread.h> 33 34 #include <VBox/log.h> 34 35 #include <VBox/VBoxGuest.h> 36 #include <VBox/VBoxGuestLib.h> 35 37 36 38 #include "VBoxClient.h" … … 38 40 static int initAutoResize() 39 41 { 40 int rc = VINF_SUCCESS, rcSystem, rcErrno; 42 int rc = VINF_SUCCESS; 43 int rcSystem, rcErrno; 41 44 42 45 LogFlowFunc(("\n")); -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r18938 r21218 36 36 #include <iprt/stream.h> 37 37 #include <iprt/string.h> 38 #include <VBox/VBoxGuest .h>38 #include <VBox/VBoxGuestLib.h> 39 39 #include <VBox/log.h> 40 40 -
trunk/src/VBox/Additions/x11/VBoxClient/seamless-host.cpp
r8155 r21218 26 26 27 27 #include <VBox/log.h> 28 #include <VBox/VBoxGuest.h> 28 29 #include <iprt/err.h> 29 30 -
trunk/src/VBox/Additions/x11/VBoxClient/seamless-host.h
r8155 r21218 27 27 28 28 #include <VBox/log.h> 29 #include <VBox/VBoxGuest .h>/* for the R3 guest library functions */29 #include <VBox/VBoxGuestLib.h> /* for the R3 guest library functions */ 30 30 31 31 #include "seamless-glue.h" /* for VBoxGuestSeamlessObserver */ -
trunk/src/VBox/Additions/x11/VBoxClient/testcase/tstSeamlessX11.cpp
r14837 r21218 22 22 #include <stdlib.h> /* exit() */ 23 23 24 #include <iprt/initterm.h> 24 25 #include <iprt/semaphore.h> 25 #include <iprt/initterm.h>26 26 #include <VBox/VBoxGuest.h> 27 #include <VBox/VBoxGuestLib.h> 27 28 28 29 #include "../seamless.h" -
trunk/src/VBox/Additions/x11/vboxmouse/VBoxUtils.c
r17155 r21218 22 22 #include <iprt/assert.h> 23 23 #include <VBox/VBoxGuest.h> 24 #include <VBox/VBoxGuestLib.h> 24 25 #include "VBoxUtils.h" 25 26 -
trunk/src/VBox/Additions/x11/vboxmouse/VBoxUtils_68.c
r17155 r21218 22 22 #include <iprt/assert.h> 23 23 #include <VBox/VBoxGuest.h> 24 #include <VBox/VBoxGuestLib.h> 24 25 #include "VBoxUtils.h" 25 26 -
trunk/src/VBox/Additions/x11/vboxmouse/vboxmouse_15.c
r19655 r21218 49 49 50 50 #include <VBox/VBoxGuest.h> 51 #include <VBox/VBoxGuestLib.h> 51 52 #include <xf86.h> 52 53 #include <xf86Xinput.h> … … 140 141 device->public.on = TRUE; 141 142 break; 142 143 143 144 case DEVICE_OFF: 144 145 xf86Msg(X_INFO, "%s: Off.\n", pInfo->name); … … 190 191 191 192 xf86CollectInputOptions(pInfo, NULL, NULL); 192 xf86ProcessCommonOptions(pInfo, pInfo->options); 193 xf86ProcessCommonOptions(pInfo, pInfo->options); 193 194 194 195 device = xf86CheckStrOption(dev->commonOptions, "Device", -
trunk/src/VBox/Additions/x11/vboxvideo/vboxutils.c
r18307 r21218 20 20 21 21 #include <VBox/VBoxGuest.h> 22 #include <VBox/VBoxGuestLib.h> 22 23 #include <VBox/VBoxDev.h> 23 24 -
trunk/src/VBox/Additions/x11/vboxvideo/vboxutils_68.c
r16995 r21218 21 21 22 22 #include <VBox/VBoxGuest.h> 23 #include <VBox/VBoxGuestLib.h> 23 24 24 25 #include <xf86Pci.h>
Note:
See TracChangeset
for help on using the changeset viewer.