Changeset 63865 in vbox
- Timestamp:
- Sep 16, 2016 12:58:26 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110719
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r63716 r63865 108 108 /** Ignore the device, no matter what. */ 109 109 #define PDMAUDIODEV_FLAGS_IGNORE RT_BIT(3) 110 /** The device is present but marked as locked by some other application. */ 111 #define PDMAUDIODEV_FLAGS_LOCKED RT_BIT(4) 112 /** The device is present but not in an alive state (dead). */ 113 #define PDMAUDIODEV_FLAGS_DEAD RT_BIT(5) 110 114 111 115 /** -
trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp
r63743 r63865 565 565 APPEND_FLAG_TO_STR(BUGGY); 566 566 APPEND_FLAG_TO_STR(IGNORE); 567 APPEND_FLAG_TO_STR(LOCKED); 568 APPEND_FLAG_TO_STR(DEAD); 567 569 568 570 } while (0);
Note:
See TracChangeset
for help on using the changeset viewer.