mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
pcm.h - major documentation updates and reordering
Cleanup for __cplusplus defines.
This commit is contained in:
parent
5e58abf785
commit
87b5b249a5
14 changed files with 402 additions and 321 deletions
|
|
@ -28,6 +28,10 @@
|
|||
#ifndef __ALSA_OUTPUT_H
|
||||
#define __ALSA_OUTPUT_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* \defgroup Output Output Interface
|
||||
* Output Interface
|
||||
|
|
@ -45,10 +49,6 @@ typedef enum _snd_output_type {
|
|||
SND_OUTPUT_BUFFER,
|
||||
} snd_output_type_t;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
int snd_output_stdio_open(snd_output_t **outputp, const char *file, const char *mode);
|
||||
int snd_output_stdio_attach(snd_output_t **outputp, FILE *fp, int _close);
|
||||
int snd_output_buffer_open(snd_output_t **outputp);
|
||||
|
|
@ -59,11 +59,11 @@ int snd_output_puts(snd_output_t *output, const char *str);
|
|||
int snd_output_putc(snd_output_t *output, int c);
|
||||
int snd_output_flush(snd_output_t *output);
|
||||
|
||||
/** \} */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
/** \} */
|
||||
|
||||
#endif /* __ALSA_OUTPUT_H */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue