Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
638 B

4 years ago
  1. #ifndef __BYTEVECT_H__
  2. #define __BYTEVECT_H__
  3. #include "RefCnt.h"
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CByteVector
  6. // Maintains a byte vector in global space.
  7. class CByteVector : public CRCObject
  8. {
  9. public:
  10. // Constructors
  11. CByteVector();
  12. // Destructor
  13. virtual ~CByteVector();
  14. // Reference Counting Routines --
  15. DECLARE_REF_COUNTERS(CByteVector)
  16. // Interface
  17. void SetSize(UINT length);
  18. PWCHAR ElementAt(UINT index); //rmk
  19. private:
  20. PWCHAR m_pb; //rmk
  21. UINT m_cb;
  22. };
  23. #endif // __BYTEVECT_H__