module dependencie foo

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@7 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-06-11 17:18:40 +00:00
parent 8584356bbc
commit aae40dcea2
6 changed files with 80 additions and 2 deletions

View file

@ -6,12 +6,19 @@
#include "core.h"
struct dependency_module {
lt_dlhandle dl;
struct dependency_module *next;
};
struct module {
struct core *core;
char *name, *argument;
uint32_t index;
lt_dlhandle dl;
struct dependency_module *dependencies;
int (*init)(struct core *c, struct module*m);
void (*done)(struct core *c, struct module*m);