my.h

来自「将exe等可执行文件转化成c程序的反编译程序,先到汇编再到c」· C头文件 代码 · 共 46 行

H
46
字号
//	exe2c include file
//	edit this file to add new function define

typedef DWORD size_t;
typedef DWORD UINT;

typedef void *PVOID;
typedef void *LPVOID;
typedef PVOID HANDLE;
typedef int                 BOOL;


typedef HANDLE HWND;

int __stdcall MessageBoxA(HWND, char *, char *, DWORD);

typedef HANDLE HINSTANCE;

typedef char *LPSTR, *PSTR;
//typedef char *PSTR;
//typedef char *LPSTR;

typedef long LONG;

#include "stdio.h"
#include "stdlib.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "mfc42.h"
#include "winsock2.h"
#include "winnls.h"	
#include "test.h"
//	----------------------------------------------------------------


int __stdcall WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine,int nCmdShow);
//int __stdcall _WinMain@16(HINSTANCE hInst,HINSTANCE hPreInst,LPSTR lpszCmdLine,int nCmdShow)

extern "C" {
	void __cdecl EH_prolog();
	void __stdcall CxxThrowException(int, int);
	int __cdecl main(int argc, char * argv[]);	
}

⌨️ 快捷键说明

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