summaryrefslogtreecommitdiffstats
path: root/src/core.h
blob: 13374e4004985ceffa78d67c7e94f77c75eaa6f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef foocorehfoo
#define foocorehfoo

#include "idxset.h"
#include "hashmap.h"
#include "mainloop-api.h"

struct pa_core {
    struct pa_mainloop_api *mainloop;

    struct pa_idxset *clients, *sinks, *sources, *sink_inputs, *source_outputs, *modules;

    struct pa_hashmap *namereg;
    
    uint32_t default_source_index, default_sink_index;
};

struct pa_core* pa_core_new(struct pa_mainloop_api *m);
void pa_core_free(struct pa_core*c);

#endif