Changeset 91671 in vbox
- Timestamp:
- Oct 11, 2021 8:22:35 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147398
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nt/vid.h
r91651 r91671 124 124 /** @} */ 125 125 126 /** A 64-bit version of HV_PARTITION_PROPERTY_CODE. */ 127 typedef int64_t VID_PARTITION_PROPERTY_CODE; 128 126 129 127 130 #ifdef IN_RING3 … … 162 165 * @returns Success indicator (details in LastErrorValue). 163 166 * @param hPartition The partition handle. 164 * @param enmProperty The property to get. 167 * @param enmProperty The property to get. Is a HV_PARTITION_PROPERTY_CODE 168 * type, but seems to be passed around as a 64-bit integer 169 * for some reason. 165 170 * @param puValue Where to return the property value. 166 171 */ 167 DECLIMPORT(BOOL) VIDAPI VidGetPartitionProperty(VID_PARTITION_HANDLE hPartition, HV_PARTITION_PROPERTY_CODE enmProperty,172 DECLIMPORT(BOOL) VIDAPI VidGetPartitionProperty(VID_PARTITION_HANDLE hPartition, VID_PARTITION_PROPERTY_CODE enmProperty, 168 173 PHV_PARTITION_PROPERTY puValue); 169 174 … … 172 177 * @note Currently (Windows 11 GA) identical to VidGetPartitionProperty. 173 178 */ 174 DECLIMPORT(BOOL) VIDAPI VidGetExoPartitionProperty(VID_PARTITION_HANDLE hPartition, HV_PARTITION_PROPERTY_CODE enmProperty,179 DECLIMPORT(BOOL) VIDAPI VidGetExoPartitionProperty(VID_PARTITION_HANDLE hPartition, VID_PARTITION_PROPERTY_CODE enmProperty, 175 180 PHV_PARTITION_PROPERTY puValue); 176 181
Note:
See TracChangeset
for help on using the changeset viewer.