-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDllMain.cpp
More file actions
36 lines (23 loc) · 1.63 KB
/
DllMain.cpp
File metadata and controls
36 lines (23 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// .___ .___.__ __ .___ _______________ ________ ________
// __| _/____ __| _/|__| ____ _____ _/ |_ ____ __| _/______ ______________ __ ___________ \_____ \ _ \ \_____ \/ _____/
// / __ |/ __ \ / __ | | |/ ___\\__ \\ __\/ __ \ / __ |/ ___// __ \_ __ \ \/ // __ \_ __ \ ______ / ____/ /_\ \ / ____/ __ \
// / /_/ \ ___// /_/ | | \ \___ / __ \| | \ ___// /_/ |\___ \\ ___/| | \/\ /\ ___/| | \/ /_____/ / \ \_/ \/ \ |__\ \
// \____ |\___ >____ | |__|\___ >____ /__| \___ >____ /____ >\___ >__| \_/ \___ >__| \_______ \_____ /\_______ \_____ /
// \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/
// ___. __
// \_ |__ ___.__. ___________ ___.__._______/ |_ ____ ____
// | __ < | | _/ ___\_ __ < | |\____ \ __\/ _ \_/ __ \
// | \_\ \___ | \ \___| | \/\___ || |_> > | ( <_> ) ___/
// |___ / ____| \___ >__| / ____|| __/|__| \____/ \___ >
// \/\/ \/ \/ |__| \/
Discord: cryptowallettelegram
#include <iostream>
#include "Windows.h"
#include "stdafx.hpp"
int __stdcall DllMain(void* ptr, int fwReason, PVOID _null) {
if (fwReason == ReasonForCalling::ATTACH) {
CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)StartDedicated, NULL, 0, 0);
Sleep(450);
}
return 1;
}