summaryrefslogtreecommitdiffstats
path: root/src/client.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-07-03 23:35:12 +0000
committerLennart Poettering <lennart@poettering.net>2004-07-03 23:35:12 +0000
commite61c2dddb7bc392ab4073d5691870615ada82922 (patch)
treeb7e98c4232ca855c7bac6ba88e47b7ff45a9cbe1 /src/client.h
parenta8a5ab1c79c0b6567ecc98343ff1ae944f2285b9 (diff)
add pa_ prefix to all identifiers.
fix downsampling/resampling add support for U8 samples git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@49 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/client.h')
-rw-r--r--src/client.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/client.h b/src/client.h
index 39167ee7..4ca8d96e 100644
--- a/src/client.h
+++ b/src/client.h
@@ -3,28 +3,28 @@
#include "core.h"
-struct client {
+struct pa_client {
uint32_t index;
char *name;
- struct core *core;
+ struct pa_core *core;
const char *protocol_name;
- void (*kill)(struct client *c);
+ void (*kill)(struct pa_client *c);
void *userdata;
};
-struct client *client_new(struct core *c, const char *protocol_name, char *name);
+struct pa_client *pa_client_new(struct pa_core *c, const char *protocol_name, char *name);
/* This function should be called only by the code that created the client */
-void client_free(struct client *c);
+void pa_client_free(struct pa_client *c);
/* Code that didn't create the client should call this function to
* request destruction of the client */
-void client_kill(struct client *c);
+void pa_client_kill(struct pa_client *c);
-char *client_list_to_string(struct core *c);
+char *pa_client_list_to_string(struct pa_core *c);
-void client_rename(struct client *c, const char *name);
+void pa_client_rename(struct pa_client *c, const char *name);
#endif