mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 05:32:47 +00:00
12 lines
292 B
C
12 lines
292 B
C
#pragma once
|
|
|
|
#include "common.h"
|
|
|
|
#define VAR_BUFFER_SIZE (72 * 1024) // enough for exactly 256 vars
|
|
|
|
#define SCRIPT_EXT "gm9"
|
|
#define SCRIPT_MAX_SIZE (SCRIPT_BUFFER_SIZE-VAR_BUFFER_SIZE-1)
|
|
|
|
bool ValidateText(const char* text, u32 size);
|
|
bool ExecuteGM9Script(const char* path_script);
|