⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loader.h

📁 pe exe packer (must use vc2005 to compile)
💻 H
字号:
// Author:   Brandon LaCombe
// Date:     February 3, 2006
// License:  Public Domain
#ifndef _LOADER_H
#define _LOADER_H

#include <windows.h>

// This file acts as the header file for all the .asm files.
extern "C"
{
    PVOID __stdcall ExportLoaderHeader(PDWORD pdwLoaderHeaderSize);
    PVOID __stdcall ExportTLSFixer(PDWORD pdwTLSFixerSize);
    PVOID __stdcall ExportNormalUnpacker(PDWORD pdwNormalUnpackerSize);
    PVOID __stdcall ExportNormalDefilter(PDWORD pdwNormalDefilterSize);
    PVOID __stdcall ExportMaxUnpacker(PDWORD pdwMaxUnpackerSize);
    PVOID __stdcall ExportMaxDefilter(PDWORD pdwMaxDefilterSize);
    PVOID __stdcall ExportHeaderUnpacker(PDWORD pdwHeaderUnpackerSize);
    PVOID __stdcall ExportImportHandler(PDWORD pdwImportHandlerSize);
    PVOID __stdcall ExportRelocationHandler(PDWORD pdwRelocationHandlerSize);
}

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -