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

📄 dd_export.h

📁 一个用BCB写的壳!
💻 H
字号:
// DD_Export.h: interface for the CDD_Export class.
//
//////////////////////////////////////////////////////////////////////
#ifndef ddexport_h
#define ddexport_h

#include "stdafx.h"
#include "DataDirectory.h"

namespace PE {

class CDD_Export : public CDataDirectory
{
public:
    void SetTable(PIMAGE_EXPORT_DIRECTORY pdirExp);
    void GetTable(PIMAGE_EXPORT_DIRECTORY pdirExp) const;
    DWORD GetOrdinalByName(LPSTR pName) const;
    BOOL IsEATInitialized(void) const;
    void SetExportAddressByIndex(DWORD dwIndex, DWORD dwAddr);
    DWORD GetExportAddressByIndex(DWORD dwIndex) const;
    DWORD GetNameByOrdinal(DWORD dwOrdinal, LPSTR pName) const;
    DWORD GetNameByIndex(DWORD dwIndex, LPSTR pName) const;
    DWORD GetOrdinalByIndex(DWORD dwIndex);
    DWORD GetDLLName(LPSTR pName) const;
    DWORD GetIndexByOrdinal(DWORD dwOrdinal) const;
    DWORD GetExportAddressByName(LPSTR pName);
    void Assign(LPBYTE pData, DWORD dwSize);
    CDD_Export(CPortableExecutable *ppeOwner);
    virtual ~CDD_Export();

protected:
    PIMAGE_EXPORT_DIRECTORY m_ped;
	 LPDWORD m_pdwEAT;
	 LPDWORD m_pdwENT;
	 LPWORD m_pwEOT;

};

}
#endif

⌨️ 快捷键说明

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