mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-09 17:19:26 +00:00
Linux Compatibility hyperdbg-cli.cpp
This commit is contained in:
parent
7592b12979
commit
bca5a245a7
1 changed files with 7 additions and 1 deletions
|
|
@ -10,11 +10,15 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <Windows.h>
|
||||
#include <string>
|
||||
#include <conio.h>
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <cstring>
|
||||
|
||||
#include "SDK/HyperDbgSdk.h"
|
||||
#include "SDK/imports/user/HyperDbgLibImports.h"
|
||||
|
|
@ -38,7 +42,9 @@ main(int argc, char * argv[])
|
|||
//
|
||||
// Set console output code page to UTF-8
|
||||
//
|
||||
#ifdef _WIN32
|
||||
SetConsoleOutputCP(CP_UTF8);
|
||||
#endif
|
||||
|
||||
printf("HyperDbg Debugger [version: %s, build: %s]\n", CompleteVersion, BuildVersion);
|
||||
printf("Please visit https://docs.hyperdbg.org for more information...\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue