summaryrefslogtreecommitdiffstats
path: root/polyp/core.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-08-04 16:39:30 +0000
committerLennart Poettering <lennart@poettering.net>2004-08-04 16:39:30 +0000
commit46091a9237f17f4295dca7140d8d70b4fce8b357 (patch)
tree1c600cd6e1801586abfb66d767f2cd96e15c819c /polyp/core.h
parent24291aff27c671c11619684cb10d3b36fdf87c0d (diff)
introduce pa_xmalloc() and friends
implement module auto loading git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@103 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'polyp/core.h')
-rw-r--r--polyp/core.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/polyp/core.h b/polyp/core.h
index 03b8671a..b125083d 100644
--- a/polyp/core.h
+++ b/polyp/core.h
@@ -32,11 +32,13 @@ struct pa_core {
struct pa_idxset *clients, *sinks, *sources, *sink_inputs, *source_outputs, *modules, *scache_idxset;
- struct pa_hashmap *namereg, *scache_hashmap;
-
- uint32_t default_source_index, default_sink_index;
+ struct pa_hashmap *namereg, *scache_hashmap, *autoload_hashmap;
+
+ char *default_source_name, *default_sink_name;
struct pa_sample_spec default_sample_spec;
+ int auto_unload_time;
+ void *auto_unload_mainloop_source;
};
struct pa_core* pa_core_new(struct pa_mainloop_api *m);