11 lines
403 B
C
11 lines
403 B
C
|
|
#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)
|
||
|
|
-> void;
|