DEADSOFTWARE

Patched for Linux
[mp3cc.git] / MPC.3.5.LINUX / structures / unit.h
1 /********************************************************************
3 unit.h - structures and functions used to hold unit
4 descriptions
6 Niksa Orlic, 2005-03-30
8 ********************************************************************/
10 struct unit_struct
11 {
12 name_table *names;
13 string *unit_name;
14 int is_library; /* set to 1 if it is an external library, or 0 if it is a plain unit */
15 };
17 typedef struct unit_struct unit;
19 unit* unit_create(string*);
20 void unit_destroy(unit*);
21 unit* unit_duplicate(unit*);