mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-05-06 16:09:38 +02:00
25 lines
688 B
C
25 lines
688 B
C
#ifndef METERPRETER_SOURCE_EXTENSION_STDAPI_SERVER_PRECOMP_H
|
|
#define METERPRETER_SOURCE_EXTENSION_STDAPI_SERVER_PRECOMP_H
|
|
|
|
#define _WIN32_WINNT 0x0400
|
|
#include "../stdapi.h"
|
|
#include <Tlhelp32.h>
|
|
#include <iphlpapi.h>
|
|
|
|
#include "resource/resource.h"
|
|
#include "fs/fs.h"
|
|
#include "sys/sys.h"
|
|
#include "net/net.h"
|
|
#include "ui/ui.h"
|
|
|
|
#include "../../../ReflectiveDLLInjection/DelayLoadMetSrv.h"
|
|
#include "../../../ReflectiveDLLInjection/GetProcAddressR.h"
|
|
#include "../../../ReflectiveDLLInjection/ReflectiveLoader.h"
|
|
|
|
#define strcasecmp stricmp
|
|
|
|
// declared in ReflectiveLoader.c and set by DllMain also in ReflectiveLoader.c
|
|
extern HINSTANCE hAppInstance;
|
|
|
|
#endif
|