We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e6fd9a commit eb5037bCopy full SHA for eb5037b
1 file changed
shellcodeCode/head.h
@@ -247,3 +247,22 @@ FARPROC GetProcAddress_Func(ULONG_PTR dwKernelBase) {
247
#endif
248
}
249
250
+
251
+typedef BOOL(WINAPI* FN_HttpQueryInfoA)(
252
+ HINTERNET hRequest,
253
+ DWORD dwInfoLevel,
254
+ LPVOID lpBuffer,
255
+ LPDWORD lpdwBufferLength,
256
+ LPDWORD lpdwIndex
257
+ );
258
259
+typedef BOOL(WINAPI* FN_InternetCloseHandle)(
260
+ HINTERNET hInternet
261
262
263
+typedef BOOL(WINAPI* FN_VirtualProtect)(
264
+ LPVOID lpAddress,
265
+ SIZE_T dwSize,
266
+ DWORD flNewProtect,
267
+ PDWORD lpflOldProtect
268
0 commit comments