EncryptionPatch/RSAPatch/Console.h
2023-12-10 01:48:53 +03:00

14 lines
No EOL
174 B
C++

#ifndef CONSOLE_H
#define CONSOLE_H
#include <Windows.h>
#include <stdio.h>
namespace Console
{
void Attach();
void Detach();
bool Print(const char* fmt, ...);
}
#endif