Bug in var->Def
[pspdecompiler.git] / nids.h
blob76c6be57b443323c628791e1ce4aa8706adc0779
1 /**
2 * Author: Humberto Naves (hsnaves@gmail.com)
3 */
5 #ifndef __NIDS_H
6 #define __NIDS_H
8 struct nidstable;
10 struct nidinfo {
11 const char *name;
12 unsigned int nid;
13 int isvariable;
14 int numargs;
15 int isvarargs;
18 struct nidstable *nids_load (const char *xmlpath);
19 struct nidinfo *nids_find (struct nidstable *nids, const char *library, unsigned int nid);
20 void nids_print (struct nidstable *nids);
21 void nids_free (struct nidstable *nids);
23 #endif /* __NIDS_H */