* todo update

* lirc warning fix
* c++ compat


git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@336 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2005-01-08 22:32:53 +00:00
parent 6911d7e981
commit 474b5683e9
6 changed files with 24 additions and 19 deletions

View file

@ -25,6 +25,10 @@
#include <inttypes.h>
#include <sys/types.h>
#include <polyp/cdecl.h>
PA_C_DECL_BEGIN
typedef uint32_t pa_typeid_t;
#define PA_TYPEID_UNKNOWN ((pa_typeid_t) -1)
@ -37,4 +41,6 @@ char *pa_typeid_to_string(pa_typeid_t id, char *ret_s, size_t length);
(((pa_typeid_t) c & 0xFF) << 8) | \
(((pa_typeid_t) d & 0xFF)))
PA_C_DECL_END
#endif