summaryrefslogtreecommitdiffstats
path: root/src/core.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/core.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/core.h')
-rw-r--r--src/core.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core.h b/src/core.h
index 289bec85..8eb638d9 100644
--- a/src/core.h
+++ b/src/core.h
@@ -5,17 +5,17 @@
#include "hashset.h"
#include "mainloop-api.h"
-struct core {
+struct pa_core {
struct pa_mainloop_api *mainloop;
- struct idxset *clients, *sinks, *sources, *sink_inputs, *source_outputs, *modules;
+ struct pa_idxset *clients, *sinks, *sources, *sink_inputs, *source_outputs, *modules;
- struct hashset *namereg;
+ struct pa_hashset *namereg;
uint32_t default_source_index, default_sink_index;
};
-struct core* core_new(struct pa_mainloop_api *m);
-void core_free(struct core*c);
+struct pa_core* pa_core_new(struct pa_mainloop_api *m);
+void pa_core_free(struct pa_core*c);
#endif