mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 05:32:47 +00:00
13 lines
395 B
C
13 lines
395 B
C
#pragma once
|
|
|
|
#include "common.h"
|
|
|
|
#define SCRIPT_EXT "gm9"
|
|
#define SCRIPT_MAX_SIZE STD_BUFFER_SIZE
|
|
|
|
bool ValidateText(const char* text, u32 size);
|
|
bool MemTextViewer(const char* text, u32 len, u32 start, bool as_script);
|
|
bool MemToCViewer(const char* text, u32 len, const char* title);
|
|
bool FileTextViewer(const char* path, bool as_script);
|
|
bool ExecuteGM9Script(const char* path_script);
|