loader.h

来自「pe exe packer (must use vc2005 to compil」· C头文件 代码 · 共 24 行

H
24
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?