Passo intermediario, ainda falta um longo caminho
[pspdecompiler.git] / nids.h
bloba06237f66bb362d123fc154ff5307d0080b7a137
1 #ifndef __NIDS_H
2 #define __NIDS_H
4 struct nidstable;
6 struct nidinfo {
7 const char *name;
8 unsigned int nid;
9 int isvariable;
10 int numargs;
11 int isvarargs;
14 struct nidstable *nids_load (const char *xmlpath);
15 struct nidinfo *nids_find (struct nidstable *nids, const char *library, unsigned int nid);
16 void nids_print (struct nidstable *nids);
17 void nids_free (struct nidstable *nids);
19 #endif /* __NIDS_H */