gev.h

来自「一些初级的网络编程」· C头文件 代码 · 共 20 行

H
20
字号
// globalvars.cpp : Defines the structure for our global external variables
//					to communicate between packer and stub
//

#ifndef _GEV_H_
#define _GEV_H_

typedef struct GlobalExternalVars
{
	DWORD dwOEP;
	DWORD dwIATAddress;
	DWORD dwRVAStubEntry;
	DWORD dwRVACompressedResourceSize;
	DWORD dwFirstGroupIconCount;
	DWORD dwDummy;							// dummy space, all above this gets compressed
	IMAGE_TLS_DIRECTORY tlsOriginal;
	DWORD dwAddressOfIndex;
} GLOBAL_EXTERNAL_VARS;

#endif _GEV_H_

⌨️ 快捷键说明

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