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

📄 deplist.h

📁 大量windows shell编程例子
💻 H
字号:
/*****************************************************************
*
*  Application.:  DEPLIST.dll
*  Module......:  DepList.cpp
*  Description.:  Library header
*  Compiler....:  MS Visual C++
*  Written by..:  D. Esposito
*
*******************************/

/*---------------------------------------------------------------*/
//                     INCLUDE section
/*---------------------------------------------------------------*/
#define WIN32_LEAN_AND_MEAN
#define STRICT

#include <windows.h>
#include <windowsx.h>
#include <imagehlp.h>

/*---------------------------------------------------------------*/
//                     INCLUDE section
/*---------------------------------------------------------------*/
extern HINSTANCE g_hThisDll;

/*---------------------------------------------------------------*/
//                     PROTOTYPES section
/*---------------------------------------------------------------*/
// Returns the bytes required to hold the names of the DLLs
int APIENTRY GetImportTableSize(LPCTSTR pszFileName);

// Fills the specified buffer with the name of the DLLs
int APIENTRY GetImportTable(LPCTSTR pszFileName, LPTSTR pszBuf);



/*  End of file: DepList.h  */

⌨️ 快捷键说明

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