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

📄 dosstub.h

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

#include "stdafx.h"

namespace PE {

class CDOSStub
{
public:
    friend class CPortableExecutable;

    void Set(LPBYTE pData, DWORD dwSize);
    DWORD Get(LPBYTE pData) const;
    CDOSStub();
    virtual ~CDOSStub();

protected:
    DWORD m_dwSize;
    LPBYTE m_pData;

protected: // Functions
    void Cleanup(void);
};

}
#endif

⌨️ 快捷键说明

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