Changeset 9662 in vbox for trunk/include
- Timestamp:
- Jun 12, 2008 2:48:02 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuest.h
r9435 r9662 169 169 VMMDevReq_HGCMCall = 62, 170 170 #endif /* VBOX_WITH_64_BITS_GUESTS */ 171 VMMDevReq_HGCMCancel = 64, 171 172 #endif 172 173 VMMDevReq_VideoAccelEnable = 70, … … 791 792 792 793 #define VBOX_HGCM_MAX_PARMS 32 794 795 /* The Cancel request is issued using the same physical memory address 796 * as was used for the corresponding initial HGCMCall. 797 */ 798 typedef struct 799 { 800 /* request header */ 801 VMMDevHGCMRequestHeader header; 802 } VMMDevHGCMCancel; 793 803 794 804 #endif /* VBOX_HGCM */ … … 1372 1382 return sizeof(VMMDevHGCMCall); 1373 1383 #endif /* VBOX_WITH_64_BITS_GUESTS */ 1384 case VMMDevReq_HGCMCancel: 1385 return sizeof(VMMDevHGCMCancel); 1374 1386 #endif /* VBOX_HGCM */ 1375 1387 case VMMDevReq_VideoAccelEnable:
Note:
See TracChangeset
for help on using the changeset viewer.