1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-20 05:53:25 +01:00
TegraExplorer/source/tegraexplorer/utils/script.h
Such Meme, Many Skill 9aff029ee4 Start script rewrite
2020-03-30 20:15:07 +02:00

12 lines
235 B
C

#pragma once
#define strcmpcheck(x, y) (!strcmp(x, y))
typedef void (*part_handler)();
typedef struct _script_parts {
char name[11];
part_handler handler;
short arg_amount;
} script_parts;
//void ParseScript(char* path);