1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2025-02-01 14:25:33 +00:00
TegraExplorer/source/tegraexplorer/utils/script.h

12 lines
233 B
C
Raw Normal View History

2020-02-06 23:31:19 +01:00
#pragma once
#define strcmpcheck(x, y) (!strcmp(x, y))
typedef void (*part_handler)();
2020-02-06 23:31:19 +01:00
typedef struct _script_parts {
char name[11];
part_handler handler;
short arg_amount;
} script_parts;
void ParseScript(char* path);