api refactoring
[m6w6/ext-psi] / src / types / decl_callinfo.h
1 #ifndef _PSI_TYPES_DECL_CALLINFO_H
2 #define _PSI_TYPES_DECL_CALLINFO_H
3
4 typedef struct decl_callinfo {
5 void *sym;
6 void *info;
7 size_t argc;
8 void **args;
9 void **rval;
10 } decl_callinfo;
11
12 #endif