mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2025-01-11 04:02:45 -03:00
12 lines
232 B
C
12 lines
232 B
C
|
#pragma once
|
||
|
#define strcmpcheck(x, y) (!strcmp(x, y))
|
||
|
|
||
|
typedef int (*part_handler)();
|
||
|
typedef struct _script_parts {
|
||
|
char name[11];
|
||
|
part_handler handler;
|
||
|
short arg_amount;
|
||
|
} script_parts;
|
||
|
|
||
|
void ParseScript(char* path);
|