block.h.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:1k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. /*
  2.  * OpenKore - Padded Packet Emulator.
  3.  * Copyright (c) 2007 kLabMouse, Japplegame, and many other contributors
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version 2
  8.  * of the License, or (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13.  * See http://www.gnu.org/licenses/gpl.html for the full license.
  14.  */
  15. #ifndef _ROPP_BLOCK_H_
  16. #define _ROPP_BLOCK_H_
  17. #include <memory.h>
  18. #include "typedefs.h"
  19. namespace OpenKore {
  20. namespace PaddedPackets {
  21. /**
  22.  * A dword buffer which can dynamically grow as necessary.
  23.  * This is used internally by the Engine class.
  24.  */
  25. class Block {
  26. public:
  27. Block();
  28. ~Block();
  29. void reset();
  30. void add(dword data);
  31. dword operator[](unsigned int index) const;
  32. unsigned int getSize() const;
  33. private:
  34. dword *buffer;
  35. unsigned int currentPos, bufLen;
  36. };
  37. } // PaddedPackets
  38. } // OpenKore
  39. #endif /* _ROPP_BLOCK_H_ */