mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 21:21:50 +00:00
11 lines
235 B
C
11 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);
|