Files
rk35xx-android14/frameworks/rs/spec.h
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

45 lines
581 B
C

#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