mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 05:32:47 +00:00
18 lines
608 B
C
18 lines
608 B
C
#pragma once
|
|
|
|
#include "common.h"
|
|
|
|
// scripts / payloads dir names
|
|
#define LANGUAGES_DIR "languages"
|
|
#define SCRIPTS_DIR "scripts"
|
|
#define PAYLOADS_DIR "payloads"
|
|
|
|
bool CheckSupportFile(const char* fname);
|
|
size_t LoadSupportFile(const char* fname, void* buffer, size_t max_len);
|
|
bool SaveSupportFile(const char* fname, void* buffer, size_t len);
|
|
bool SetAsSupportFile(const char* fname, const char* source);
|
|
|
|
bool GetSupportDir(char* path, const char* dname);
|
|
bool CheckSupportDir(const char* fpath);
|
|
bool FileSelectorSupport(char* result, const char* text, const char* dname, const char* pattern);
|