Changeset 73725 in vbox for trunk/include
- Timestamp:
- Aug 16, 2018 10:05:37 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r73687 r73725 2784 2784 #define VERR_AUDIO_BACKEND_INIT_FAILED (-6600) 2785 2785 /** No host backend attached / available. */ 2786 #define VERR_AUDIO_BACKEND_NOT_ATTACHED (-660 5)2786 #define VERR_AUDIO_BACKEND_NOT_ATTACHED (-6601) 2787 2787 /** No free input streams. */ 2788 #define VERR_AUDIO_NO_FREE_INPUT_STREAMS (-660 1)2788 #define VERR_AUDIO_NO_FREE_INPUT_STREAMS (-6602) 2789 2789 /** No free output streams. */ 2790 #define VERR_AUDIO_NO_FREE_OUTPUT_STREAMS (-660 2)2790 #define VERR_AUDIO_NO_FREE_OUTPUT_STREAMS (-6603) 2791 2791 /** Pending stream disable operation in progress. */ 2792 #define VERR_AUDIO_STREAM_PENDING_DISABLE (-660 3)2792 #define VERR_AUDIO_STREAM_PENDING_DISABLE (-6604) 2793 2793 /** There is more data available. 2794 2794 * This can happen due to a buffer wraparound of a buffer read/write operation. */ 2795 #define VINF_AUDIO_MORE_DATA_AVAILABLE (660 4)2795 #define VINF_AUDIO_MORE_DATA_AVAILABLE (6605) 2796 2796 /** Stream is not ready for requested operation. */ 2797 #define VERR_AUDIO_STREAM_NOT_READY (-660 4)2797 #define VERR_AUDIO_STREAM_NOT_READY (-6605) 2798 2798 /** Stream could not be created. 2799 2799 * This might due to missing host (backend) drivers or a host not having the 2800 2800 * required hardware, or that the requested stream configuration 2801 2801 * is not supported by the host backend. */ 2802 #define VERR_AUDIO_STREAM_COULD_NOT_CREATE (-660 5)2802 #define VERR_AUDIO_STREAM_COULD_NOT_CREATE (-6606) 2803 2803 /** @} */ 2804 2804
Note:
See TracChangeset
for help on using the changeset viewer.