Files
TegraExplorer/source/tegraexplorer/script/functions.h
suchmememanyskill ba0ded0f8b start of tsV2
2020-11-06 21:19:29 +01:00

10 lines
260 B
C

#pragma once
#include "types.h"
#define BIT(n) (1U << n)
#define VARARGS(x) {x, 1, 0}
#define OPERATORARGS(x) {x, 0, 1}
dictValue_t executeFunction(scriptCtx_t* ctx, char* func_name);
varVector_t extractVars(scriptCtx_t* ctx, lexarToken_t* tokens, u32 len);