Move over script and tools
This commit is contained in:
11
source/tegraexplorer/utils/script.h
Normal file
11
source/tegraexplorer/utils/script.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#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);
|
||||
Reference in New Issue
Block a user