Changeset 28206 in vbox for trunk/include
- Timestamp:
- Apr 12, 2010 1:48:49 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59946
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r28186 r28206 49 49 * Typedefs, constants and inlines * 50 50 ******************************************************************************/ 51 52 /** 53 * Data structure to pass to the service extension callback. We use this to 54 * notify the host of changes to properties. 55 */ 56 typedef struct _HOSTCALLBACKDATA 57 { 58 /** Magic number to identify the structure */ 59 uint32_t u32Magic; 60 61 } HOSTCALLBACKDATA, *PHOSTCALLBACKDATA; 62 63 enum 64 { 65 /** Magic number for sanity checking the HOSTCALLBACKDATA structure */ 66 HOSTCALLBACKMAGIC = 0x26011982 67 }; 51 68 52 69 /**
Note:
See TracChangeset
for help on using the changeset viewer.