summaryrefslogtreecommitdiff
path: root/libs/rs/rsScriptC.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/rs/rsScriptC.h')
-rw-r--r--libs/rs/rsScriptC.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/rs/rsScriptC.h b/libs/rs/rsScriptC.h
index c46901b14806..9d9ec4977dbd 100644
--- a/libs/rs/rsScriptC.h
+++ b/libs/rs/rsScriptC.h
@@ -69,6 +69,14 @@ public:
void clear();
void runCompiler(Context *rsc);
+
+ struct SymbolTable_t {
+ const char * mName;
+ void * mPtr;
+ const char * mDecl;
+ };
+ static SymbolTable_t gSyms[];
+ static const SymbolTable_t * lookupSymbol(const char *);
};