GodMode9/arm9/source/utils/scripting.h

15 lines
486 B
C
Raw Normal View History

2017-06-09 01:45:00 +02:00
#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)
2017-06-26 01:44:16 +02:00
bool ValidateText(const char* text, u32 size);
2017-10-02 03:08:47 +02:00
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);
2017-06-09 01:45:00 +02:00
bool ExecuteGM9Script(const char* path_script);