2025-03-09 21:59:22 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "head.h"
|
|
|
|
|
|
|
|
|
|
// Internet API函数声明
|
|
|
|
|
auto Api_InternetOpenA(void* sandbox, uc_engine* uc, uint64_t address) -> void;
|
|
|
|
|
auto Api_InternetOpenUrlA(void* sandbox, uc_engine* uc, uint64_t address)
|
|
|
|
|
-> void;
|
|
|
|
|
auto Api_InternetCloseHandle(void* sandbox, uc_engine* uc, uint64_t address)
|
|
|
|
|
-> void;
|
|
|
|
|
auto Api_InternetReadFile(void* sandbox, uc_engine* uc, uint64_t address)
|
2025-03-19 14:52:19 +08:00
|
|
|
-> void;
|
|
|
|
|
auto Api_URLDownloadToFileW(void* sandbox, uc_engine* uc, uint64_t address)
|
2025-03-09 21:59:22 +08:00
|
|
|
-> void;
|