KMemClass1.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #ifndef __KMEMCLASS1_H__
  2. #define __KMEMCLASS1_H__
  3. #include "KEngine.h"
  4.  class ENGINE_API KMemClass1 
  5. {
  6. int m_lpMemLen;
  7. PVOID m_lpMemPtr;
  8. public:
  9. PVOID Alloc(DWORD dwSize);
  10. void Free();
  11. void Zero();
  12. void Fill(BYTE byFill);
  13. void Fill(WORD wFill);
  14. void Fill(DWORD dwFill);
  15. PVOID GetMemPtr() { return m_lpMemPtr; };
  16. DWORD GetMemLen() { return m_lpMemLen; };
  17. };
  18. #endif //__KMEMCLASS1_H__