Changeset 9658 in vbox for trunk/include
- Timestamp:
- Jun 12, 2008 12:33:17 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/selm.h
r9212 r9658 34 34 #include <VBox/types.h> 35 35 #include <VBox/x86.h> 36 #include <VBox/dis.h> 36 37 37 38 … … 232 233 233 234 /** 234 * Checks if a selector is 32-bit or 16-bit. 235 * 236 * @returns True if it is 32-bit. 237 * @returns False if it is 16-bit. 235 * Return the selector type 236 * 237 * @returns DISCPUMODE according to the selector type (16, 32 or 64 bits) 238 238 * @param pVM VM Handle. 239 239 * @param eflags Current eflags register … … 241 241 * @param pHiddenSel The hidden selector register. 242 242 */ 243 SELMDECL( bool) SELMIsSelector32Bit(PVM pVM, X86EFLAGS eflags, RTSEL Sel, PCPUMSELREGHID pHiddenSel);243 SELMDECL(DISCPUMODE) SELMGetSelectorType(PVM pVM, X86EFLAGS eflags, RTSEL Sel, PCPUMSELREGHID pHiddenSel); 244 244 245 245 /**
Note:
See TracChangeset
for help on using the changeset viewer.