mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-10 06:02:01 +00:00
13 lines
No EOL
247 B
C
13 lines
No EOL
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); |