VirtualBox

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

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

VBoxService/VBoxHeadless: Drop VRDP connection on manual restart / hard VM reset.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 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.virtualbox.org. 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 * - a) get a "reset" value assigned (via VBoxServicePropCacheUpdateEntry)
27 * as soon as the property cache gets destroyed, or
28 * - b) get deleted when no reset value is specified.
29 */
30#define VBOXSERVICEPROPCACHEFLAG_TEMPORARY RT_BIT(1)
31/** Indicates whether a property every time needs to be updated, regardless
32 * if its real value changed or not. */
33#define VBOXSERVICEPROPCACHEFLAG_ALWAYS_UPDATE RT_BIT(2)
34/** The guest property gets deleted when
35 * - a) the property cache gets destroyed, or
36 * - b) the VM gets reset / shutdown / destroyed.
37 */
38#define VBOXSERVICEPROPCACHEFLAG_TRANSIENT RT_BIT(3)
39
40int VBoxServicePropCacheCreate(PVBOXSERVICEVEPROPCACHE pCache, uint32_t uClientId);
41int VBoxServicePropCacheUpdateEntry(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, uint32_t fFlags, const char *pszValueReset);
42int VBoxServicePropCacheUpdate(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, const char *pszValueFormat, ...);
43int VBoxServicePropCacheUpdateByPath(PVBOXSERVICEVEPROPCACHE pCache, const char *pszValue, uint32_t fFlags, const char *pszPathFormat, ...);
44int VBoxServicePropCacheFlush(PVBOXSERVICEVEPROPCACHE pCache);
45void VBoxServicePropCacheDestroy(PVBOXSERVICEVEPROPCACHE pCache);
46# endif /* VBOX_WITH_GUEST_PROPS */
47
48#endif /* ___VBoxServicePropCache_h */
49
Note: See TracBrowser for help on using the repository browser.

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