发布V1.0.0.2

This commit is contained in:
yuanyuanxiang
2019-01-18 17:37:15 +08:00
parent 38c0c1ccdb
commit b573baed0b
43 changed files with 152 additions and 138 deletions

View File

@@ -8,14 +8,14 @@ public:
CBuffer(void);
~CBuffer(void);
ULONG GetBufferMaxLength();
ULONG GetBufferMaxLength() const;
ULONG ReadBuffer(PBYTE Buffer, ULONG ulLength);
ULONG GetBufferLength(); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ч<EFBFBD><D0A7><EFBFBD>ݳ<EFBFBD><DDB3><EFBFBD>;
ULONG GetBufferLength() const; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ч<EFBFBD><D0A7><EFBFBD>ݳ<EFBFBD><DDB3><EFBFBD>
ULONG DeAllocateBuffer(ULONG ulLength);
VOID ClearBuffer();
ULONG ReAllocateBuffer(ULONG ulLength);
BOOL WriteBuffer(PBYTE Buffer, ULONG ulLength);
PBYTE GetBuffer(ULONG ulPos=0);
PBYTE GetBuffer(ULONG ulPos=0) const;
protected:
PBYTE m_Base;