Switched to release and renamed some stuff

This commit is contained in:
hellisabove
2023-07-03 02:56:04 +03:00
parent 2491cb5333
commit 3d2d70ec7f
10 changed files with 36 additions and 25 deletions
+20
View File
@@ -0,0 +1,20 @@
#include <Windows.h>
BOOL APIENTRY DllMain(HMODULE Base, DWORD Callback, LPVOID Param) {
switch (Callback) {
case DLL_PROCESS_ATTACH:
break;
case DLL_PROCESS_DETACH:
break;
default:
break;
}
return 1;
}
extern "C" __declspec(dllexport) int FunEntry() {
return MessageBoxA(0, "Hello World From C2", 0, 0);
}