mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 21:51:48 +00:00
13 lines
247 B
C
13 lines
247 B
C
|
#pragma once
|
||
|
#include "../../utils/types.h"
|
||
|
|
||
|
typedef void (*func_void_ptr)();
|
||
|
typedef int (*func_int_ptr)();
|
||
|
|
||
|
typedef struct {
|
||
|
char *key;
|
||
|
func_int_ptr value;
|
||
|
u8 arg_count;
|
||
|
} str_fnc_struct;
|
||
|
|
||
|
int run_function(char *func_name, int *out);
|