Changeset 76118 in vbox for trunk/include/VBox
- Timestamp:
- Dec 10, 2018 1:07:58 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/shflsvc.h
r76108 r76118 1222 1222 */ 1223 1223 1224 /** SHFL_FN_CLOSE parameters. */ 1225 typedef struct VBoxSFParmClose 1226 { 1227 /** value32, in: SHFLROOT of the mapping with the handle. */ 1228 HGCMFunctionParameter id32Root; 1229 /** value64, in: SHFLHANDLE of object to close. */ 1230 HGCMFunctionParameter u64Handle; 1231 } VBoxSFParmClose; 1232 1224 1233 /** Parameters structure. */ 1225 1234 typedef struct _VBoxSFClose … … 1535 1544 typedef struct VBoxSFParmInformation 1536 1545 { 1537 /** value32, in: SHFLROOT 1538 * Root handle of the mapping which name is queried. */ 1546 /** value32, in: SHFLROOT of the mapping the handle belongs to. */ 1539 1547 HGCMFunctionParameter id32Root; 1540 /** value64, in: 1541 * SHFLHANDLE of object to be listed. */ 1548 /** value64, in: SHFLHANDLE of object to be queried/set. */ 1542 1549 HGCMFunctionParameter u64Handle; 1543 /** value32, in: 1544 * SHFL_INFO_* */ 1550 /** value32, in: SHFL_INFO_XXX */ 1545 1551 HGCMFunctionParameter f32Flags; 1546 /** value32, in/out: 1547 * Bytes to be used for information/How many bytes were used. */ 1552 /** value32, in/out: Bytes to be used for information/How many bytes were used. */ 1548 1553 HGCMFunctionParameter cb32; 1549 /** pointer, in/out: 1550 * Information to be set/get (SHFLFSOBJINFO or SHFLSTRING). Do not forget 1551 * to set the SHFLFSOBJINFO::Attr::enmAdditional for Get operation as well. */ 1554 /** pointer, in/out: Information to be set/get (SHFLFSOBJINFO, SHFLVOLINFO, or SHFLSTRING). 1555 * Do not forget to set the SHFLFSOBJINFO::Attr::enmAdditional for Get operation as well. */ 1552 1556 HGCMFunctionParameter pInfo; 1553 1557 } VBoxSFParmInformation;
Note:
See TracChangeset
for help on using the changeset viewer.