Changeset 21218 in vbox for trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
- Timestamp:
- Jul 5, 2009 1:31:56 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49535
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.