mirror of
https://github.com/naksyn/DojoLoader
synced 2026-06-06 16:14:37 +00:00
10 lines
256 B
C
10 lines
256 B
C
#include <windows.h>
|
|
#include <wininet.h>
|
|
#include "structs.h"
|
|
#pragma comment(lib, "wininet.lib")
|
|
#pragma once
|
|
|
|
char* DownloadFile(const char* url, DWORD* size);
|
|
void XORWithKey(char* data, DWORD size, const char* key);
|
|
BOOL ReadDllFile(char* FileInput);
|