mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
23 lines
681 B
C
23 lines
681 B
C
#pragma once
|
|
#include "imgui.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Initialization
|
|
void PrintDXAddress();
|
|
void InstallDXHooks();
|
|
void RemoveDXHooks();
|
|
void ShowGameConsole(bool* p_open);
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Internals
|
|
int Stricmp(const char* s1, const char* s2);
|
|
int Strnicmp(const char* s1, const char* s2, int n);
|
|
char* Strdup(const char* s);
|
|
void Strtrim(char* s);
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Globals
|
|
inline ImVector<char*> Items;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|