- Timestamp:
- May 12, 2009 3:29:22 PM (16 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/Makefile.kmk
r19635 r19644 40 40 VBoxService.cpp \ 41 41 VBoxServiceTimeSync.cpp \ 42 VBoxServiceVMInfo.cpp \43 42 VBoxServiceUtils.cpp 44 VBoxService_SOURCES.win = \ 43 ifdef VBOX_WITH_GUEST_PROPS 44 VBoxService_SOURCES.win = \ 45 VBoxServiceVMInfo-win.cpp 46 VBoxService_SOURCES += \ 47 VBoxServiceVMInfo.cpp 48 endif 49 VBoxService_SOURCES.win += \ 45 50 VBoxService-win.rc \ 46 VBoxService-win.cpp \ 47 VBoxServiceVMInfo-win.cpp 51 VBoxService-win.cpp 48 52 VBoxService_SOURCES.os2 = \ 49 53 VBoxService-os2.def \ -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h
r19374 r19644 144 144 /** Uninstalls the service from the registry. */ 145 145 extern int VBoxServiceWinUninstall(void); 146 #ifdef VBOX_WITH_GUEST_PROPS 146 147 /** Detects wheter a user is logged on based on the enumerated processes. */ 147 148 extern BOOL VboxServiceVMInfoWinIsLoggedIn(VBOXSERVICEVMINFOUSER* a_pUserInfo, … … 151 152 /** Gets logon user IDs from enumerated processes. */ 152 153 extern DWORD VboxServiceVMInfoWinGetLUIDsFromProcesses(PLUID *ppLuid); 153 #endif 154 #endif /* VBOX_WITH_GUEST_PROPS */ 155 #endif /* RT_OS_WINDOWS */ 154 156 155 157 __END_DECLS -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceUtils.cpp
r19618 r19644 37 37 38 38 39 #ifdef VBOX_WITH_GUEST_PROPS 39 40 int VboxServiceWriteProp(uint32_t uiClientID, const char *pszKey, const char *pszValue) 40 41 { … … 86 87 return VboxServiceWriteProp(uiClientID, pszKey, szBuffer); 87 88 } 89 #endif /* VBOX_WITH_GUEST_PROPS */ 88 90 89 91 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceUtils.h
r19620 r19644 25 25 #include "VBoxServiceInternal.h" 26 26 27 #ifdef VBOX_WITH_GUEST_PROPS 27 28 int VboxServiceWritePropInt(uint32_t uiClientID, const char *pszKey, int iValue); 28 29 int VboxServiceWriteProp(uint32_t uiClientID, const char *pszKey, const char *pszValue); 30 #endif 29 31 #ifdef RT_OS_WINDOWS 30 32 /** Gets a pre-formatted version string from the VS_FIXEDFILEINFO table. */
Note:
See TracChangeset
for help on using the changeset viewer.