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

📄 enumproc.h

📁 大量windows shell编程例子
💻 H
字号:
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <windowsx.h>
#include <commctrl.h>
#include <tlhelp32.h>   // Win9x only
// #include <psapi.h>      // WinNT only

typedef struct tagPROCSTRUCT {
	CHAR szExeName[MAX_PATH];
	DWORD processID;
	CHAR szExeType[20];

} PROCSTRUCT, FAR *LPPROCSTRUCT;

typedef BOOL (CALLBACK *LPENUMPROC)( LPPROCSTRUCT, LPARAM );

#ifdef __cplusplus
extern "C" {
#endif

BOOL APIENTRY EnumProcess( 
	LPENUMPROC lpfunc,
	LPARAM lParam
);


BOOL APIENTRY EnumProcessToTreeView( 
	HWND hwndTree
);


INT APIENTRY GetExeBinaryFormat( 
	LPCSTR szExeName, 
	LPSTR szExeType 
);


BOOL APIENTRY ProcessDlg( 
	HWND hwnd
);

#ifdef __cplusplus
}
#endif

/*  End of file: EnumProc.h  */

⌨️ 快捷键说明

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