Go to the documentation of this file.
28 #include <pulse/cdecl.h>
38 #define pa_get_headers_version() ("2.1.0")
48 #define PA_API_VERSION 12
52 #define PA_PROTOCOL_VERSION 26
65 #define PA_CHECK_VERSION(major,minor,micro) \
66 ((PA_MAJOR > (major)) || \
67 (PA_MAJOR == (major) && PA_MINOR > (minor)) || \
68 (PA_MAJOR == (major) && PA_MINOR == (minor) && PA_MICRO >= (micro)))