File: dynamic_list.h

package info (click to toggle)
gnomp3 0.1.7-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 488 kB
  • ctags: 342
  • sloc: ansic: 3,285; makefile: 74; awk: 33
file content (13 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef DYNAMIC_LIST_H
#define DYNAMIC_LIST_H

struct dynamic_list{
    char *name;
    void (*load_callback)();
};

GList *dynamic_list_add_names(GList *list);
int dynamic_list_load(char *name);
struct dynamic_list *dynamic_list_find(char *name);

#endif