Changeset 10652 in vbox for trunk/include/VBox
- Timestamp:
- Jul 15, 2008 12:36:13 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33362
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/hgcmsvc.h
r8155 r10652 58 58 * 3.2->3.3 Because pfnDisconnectClient helper was added 59 59 * 3.3->4.1 Because the pvService entry and parameter was added 60 * 4.1->4.2 Because the VBOX_HGCM_SVC_PARM_CALLBACK paramteter type was added 60 61 */ 61 62 #define VBOX_HGCM_SVC_VERSION_MAJOR (0x0004) 62 #define VBOX_HGCM_SVC_VERSION_MINOR (0x000 1)63 #define VBOX_HGCM_SVC_VERSION_MINOR (0x0002) 63 64 #define VBOX_HGCM_SVC_VERSION ((VBOX_HGCM_SVC_VERSION_MAJOR << 16) + VBOX_HGCM_SVC_VERSION_MINOR) 64 65 … … 82 83 typedef VBOXHGCMSVCHELPERS *PVBOXHGCMSVCHELPERS; 83 84 84 85 #define VBOX_HGCM_SVC_PARM_INVALID (0U) 86 #define VBOX_HGCM_SVC_PARM_32BIT (1U) 87 #define VBOX_HGCM_SVC_PARM_64BIT (2U) 88 #define VBOX_HGCM_SVC_PARM_PTR (3U) 85 /** 86 * Callback type for HGCM services which can send notification messages. 87 * Intended for use on the host side. 88 */ 89 typedef DECLCALLBACK(void) FNVBOXHGCMCALLBACK(void *pvParm); 90 typedef FNVBOXHGCMCALLBACK *PFNVBOXHGCMCALLBACK; 91 92 #define VBOX_HGCM_SVC_PARM_INVALID (0U) 93 #define VBOX_HGCM_SVC_PARM_32BIT (1U) 94 #define VBOX_HGCM_SVC_PARM_64BIT (2U) 95 #define VBOX_HGCM_SVC_PARM_PTR (3U) 96 #define VBOX_HGCM_SVC_PARM_CALLBACK (4U) 89 97 90 98 typedef struct VBOXHGCMSVCPARM … … 102 110 void *addr; 103 111 } pointer; 112 struct 113 { 114 PFNVBOXHGCMCALLBACK pFunction; 115 void *pvData; 116 } callback; 104 117 } u; 105 118 } VBOXHGCMSVCPARM;
Note:
See TracChangeset
for help on using the changeset viewer.