diff options
author | Max Kellermann <max@duempel.org> | 2008-10-29 20:40:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-29 20:40:27 +0100 |
commit | 58c5bee9f0bcb46da7d113b66a4e1e2d7add9837 (patch) | |
tree | 4517d2156aa3643247e7f2fc886af86d3dfd8791 /src/output_api.h | |
parent | 03390d8be1cb8983778faf6eedb9bcfd26a6dbce (diff) | |
download | mpd-58c5bee9f0bcb46da7d113b66a4e1e2d7add9837.tar.gz mpd-58c5bee9f0bcb46da7d113b66a4e1e2d7add9837.tar.xz mpd-58c5bee9f0bcb46da7d113b66a4e1e2d7add9837.zip |
output: use bool for return values and flags
Don't return 0/-1 on success/error, but true/false. Instead of int,
use bool for storing flags.
Diffstat (limited to 'src/output_api.h')
-rw-r--r-- | src/output_api.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/output_api.h b/src/output_api.h index 11d4620f6..fb0844cd8 100644 --- a/src/output_api.h +++ b/src/output_api.h @@ -45,7 +45,7 @@ struct audio_output_plugin { * Test if this plugin can provide a default output, in case * none has been configured. This method is optional. */ - int (*test_default_device)(void); + bool (*test_default_device)(void); /** * Configure and initialize the device, but do not open it @@ -73,12 +73,12 @@ struct audio_output_plugin { * @param audio_format the audio format in which data is going * to be delivered; may be modified by the plugin */ - int (*open)(void *data, struct audio_format *audio_format); + bool (*open)(void *data, struct audio_format *audio_format); /** * Play a chunk of audio data. */ - int (*play)(void *data, const char *playChunk, size_t size); + bool (*play)(void *data, const char *playChunk, size_t size); /** * Pause the device. If supported, it may perform a special |