Source code of Windows XP (NT5)
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.

24 lines
518 B

  1. // Object.h: interface for the Object class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_OBJECT_H__21BA586D_FABE_44C0_AED8_D3175686C1F1__INCLUDED_)
  5. #define AFX_OBJECT_H__21BA586D_FABE_44C0_AED8_D3175686C1F1__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include <windows.h>
  10. class Object
  11. {
  12. public:
  13. Object* next,*prev;
  14. Object();
  15. virtual TCHAR* Data();
  16. };
  17. #endif // !defined(AFX_OBJECT_H__21BA586D_FABE_44C0_AED8_D3175686C1F1__INCLUDED_)