1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-11-08 13:11:54 +00:00
TegraExplorer/source/tegraexplorer/script.h
Such Meme, Many Skill 1a2fd158e9 Add scripting to TE
2020-02-06 23:31:19 +01:00

21 lines
No EOL
450 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);
int Part_WaitOnUser();
int Part_Exit();
int Part_ErrorPrint();
int Part_Print();
int Part_MountMMC();
int Part_ConnectMMC();
int Part_MakeFolder();
int Part_RecursiveCopy();
int Testing_Part_Handler();
int Part_Copy();