VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxService/VBoxServicePropCache.h@ 36178

Last change on this file since 36178 was 36178, checked in by vboxsync, 14 years ago

Main/VBoxManage/Guest Additions: Added support for "TRANSIENT_RESET" guest properties which are only present until a VM reset.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/* $Id: */
2/** @file
3 * VBoxServicePropCache - Guest property cache.
4 */
5
6/*
7 * Copyright (C) 2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.215389.xyz. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___VBoxServicePropCache_h
19#define ___VBoxServicePropCache_h
20
21#include "VBoxServiceInternal.h"
22
23# ifdef VBOX_WITH_GUEST_PROPS
24
25/** Indicates wheter a guest property is temporary and either should
26 * get deleted when
27 * - a) the property cache gets destroyed, or
28 * - b) the VM gets a hard reset / shutdown
29 * or gets a default "reset" value (if specified via VBoxServicePropCacheUpdateEntry)
30 * when the property cache gets properly destroyed.
31 */
32#define VBOXSERVICEPROPCACHEFLAG_TEMPORARY RT_BIT(1)
33/** Indicates whether a property every time needs to be updated, regardless
34 * if its real value changed or not. */
35#define VBOXSERVICEPROPCACHEFLAG_ALWAYS_UPDATE RT_BIT(2)
36
37int VBoxServicePropCacheCreate(PVBOXSERVICEVEPROPCACHE pCache, uint32_t uClientId);
38int VBoxServicePropCacheUpdateEntry(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, uint32_t fFlags, const char *pszValueReset);
39int VBoxServicePropCacheUpdate(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, const char *pszValueFormat, ...);
40int VBoxServicePropCacheUpdateByPath(PVBOXSERVICEVEPROPCACHE pCache, const char *pszValue, uint32_t fFlags, const char *pszPathFormat, ...);
41int VBoxServicePropCacheFlush(PVBOXSERVICEVEPROPCACHE pCache);
42void VBoxServicePropCacheDestroy(PVBOXSERVICEVEPROPCACHE pCache);
43# endif /* VBOX_WITH_GUEST_PROPS */
44
45#endif /* ___VBoxServicePropCache_h */
46
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette