EncryptionPatch/RSAPatch/Console.h

14 lines
174 B
C
Raw Permalink Normal View History

2023-12-09 22:48:53 +00:00
#ifndef CONSOLE_H
#define CONSOLE_H
#include <Windows.h>
#include <stdio.h>
namespace Console
{
void Attach();
void Detach();
bool Print(const char* fmt, ...);
}
#endif