Changeset 11083 in vbox for trunk/include
- Timestamp:
- Aug 3, 2008 9:14:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestPropertySvc.h
r11082 r11083 39 39 /** 40 40 * Get the value attached to a configuration property key 41 * The parameter format matches that of GET_ CONFIG_KEY.42 */ 43 GET_ CONFIG_KEY_HOST = 2,41 * The parameter format matches that of GET_PROP. 42 */ 43 GET_PROP_HOST = 2, 44 44 /** 45 45 * Set the value attached to a configuration property key 46 * The parameter format matches that of SET_CONFIG_KEY. 47 */ 48 SET_CONFIG_KEY_HOST = 3, 46 * The parameter format matches that of SET_PROP. 47 */ 48 SET_PROP_HOST = 3, 49 /** 50 * Set the value attached to a configuration property key 51 * The parameter format matches that of SET_PROP_VALUE. 52 */ 53 SET_PROP_VALUE_HOST = 4, 49 54 /** 50 55 * Remove the value attached to a configuration property key 51 * The parameter format matches that of DEL_ CONFIG_KEY.52 */ 53 DEL_ CONFIG_KEY_HOST = 4,56 * The parameter format matches that of DEL_PROP. 57 */ 58 DEL_PROP_HOST = 5, 54 59 /** 55 60 * Enumerate guest properties. 56 61 * The parameter format matches that of ENUM_PROPS. 57 62 */ 58 ENUM_PROPS_HOST = 563 ENUM_PROPS_HOST = 6 59 64 }; 60 65
Note:
See TracChangeset
for help on using the changeset viewer.