Changeset 74791 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Oct 12, 2018 10:44:17 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vm.h
r74790 r74791 727 727 #endif 728 728 729 /** @def VM_FF_IS_ PENDING729 /** @def VM_FF_IS_ANY_SET 730 730 * Checks if one or more force action in the specified set is pending. 731 731 * … … 733 733 * @param fFlags The flags to check for. 734 734 */ 735 #define VM_FF_IS_ PENDING(pVM, fFlags) RT_BOOL((pVM)->fGlobalForcedActions & (fFlags))735 #define VM_FF_IS_ANY_SET(pVM, fFlags) RT_BOOL((pVM)->fGlobalForcedActions & (fFlags)) 736 736 737 737 /** @def VMCPU_FF_IS_ANY_SET
Note:
See TracChangeset
for help on using the changeset viewer.