diff options
Diffstat (limited to '9/platforms/android-19/arch-x86/usr/include/rs/spec.h')
-rw-r--r-- | 9/platforms/android-19/arch-x86/usr/include/rs/spec.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/9/platforms/android-19/arch-x86/usr/include/rs/spec.h b/9/platforms/android-19/arch-x86/usr/include/rs/spec.h deleted file mode 100644 index ecc5cc7..0000000 --- a/9/platforms/android-19/arch-x86/usr/include/rs/spec.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef SPEC_H -#define SPEC_H - -#include <string.h> -#include <stdlib.h> - -#if __cplusplus -extern "C" { -#endif - -extern int num_lines; - -typedef struct { - int isConst; - int type; - int bits; - int ptrLevel; - char name[256]; - char typeName[256]; -} VarType; - -extern VarType *currType; - -typedef struct { - char name[256]; - int sync; - int handcodeApi; - int direct; - int nocontext; - int paramCount; - VarType ret; - VarType params[16]; -} ApiEntry; - -extern ApiEntry apis[128]; -extern int apiCount; - -extern int typeNextState; - -#if __cplusplus -} // extern "C" -#endif - -#endif // SPEC_H |