Changeset 103149 in vbox for trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
- Timestamp:
- Jan 31, 2024 3:41:31 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r102753 r103149 112 112 #include "VBoxServiceUtils.h" 113 113 #include "VBoxServicePropCache.h" 114 #include "VBoxServiceVMInfo.h" 114 115 115 116 … … 155 156 /** User idle threshold (in ms). This specifies the minimum time a user is considered 156 157 * as being idle and then will be reported to the host. Default is 5s. */ 157 uint32_tg_uVMInfoUserIdleThresholdMS = 5 * 1000;158 DECL_HIDDEN_DATA(uint32_t) g_uVMInfoUserIdleThresholdMS = 5 * 1000; 158 159 159 160 … … 429 430 * the property. 430 431 */ 431 intVGSvcUserUpdateF(PVBOXSERVICEVEPROPCACHE pCache, const char *pszUser, const char *pszDomain,432 const char *pszKey, const char *pszValueFormat, ...)432 DECLHIDDEN(int) VGSvcUserUpdateF(PVBOXSERVICEVEPROPCACHE pCache, const char *pszUser, const char *pszDomain, 433 const char *pszKey, const char *pszValueFormat, ...) 433 434 { 434 435 AssertPtrReturn(pCache, VERR_INVALID_POINTER); … … 494 495 * @param va Format arguments. 495 496 */ 496 intVGSvcUserUpdateV(PVBOXSERVICEVEPROPCACHE pCache, const char *pszUser, const char *pszDomain,497 const char *pszKey, const char *pszFormat, va_list va)497 DECLHIDDEN(int) VGSvcUserUpdateV(PVBOXSERVICEVEPROPCACHE pCache, const char *pszUser, const char *pszDomain, 498 const char *pszKey, const char *pszFormat, va_list va) 498 499 { 499 500 char *psz = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.