mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-02-26 01:40:25 -05:00
work around C99/GCC incompatibility
native protocol: add "local" field to pa_context add volume paramter to pa_stream_connect_playback add support for renaming streams/clients support lazy samples add functions to kill clients/source inputs/sink outputs add functions for loading/unloading modules add autoload management API git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@204 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
9ca72dce0b
commit
f5d47a293a
23 changed files with 680 additions and 40 deletions
|
|
@ -33,10 +33,22 @@
|
|||
|
||||
#include "strbuf.h"
|
||||
|
||||
#ifdef __STDC_VERSION__
|
||||
#if __STDC_VERSION__ >= 199901L
|
||||
#ifndef STDC99
|
||||
#define STDC99
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
struct chunk {
|
||||
struct chunk *next;
|
||||
size_t length;
|
||||
#ifdef STDC99
|
||||
char text[];
|
||||
#else
|
||||
char text[0];
|
||||
#endif
|
||||
};
|
||||
|
||||
struct pa_strbuf {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue