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.

38 lines
1.2 KiB

  1. //***************************************************************************
  2. //
  3. // FileName:
  4. // $Workfile: ToolLib.h $
  5. //
  6. // Author:
  7. // TOSHIBA [PCS](PSY) Seiichi Nakamura
  8. // Copyright (c) 1997 TOSHIBA CORPORATION
  9. //
  10. // Description:
  11. //
  12. //***************************************************************************
  13. // $Header: /DVD Drivers/Sources/ToolLib/ToolLib.h 2 97/06/26 20:40 Seichan $
  14. // $Modtime: 97/06/26 20:40 $
  15. // $Nokeywords:$
  16. //***************************************************************************
  17. //---------------------------------------------------------------------------
  18. // List Item Base CLASS
  19. //---------------------------------------------------------------------------
  20. class IMBoardListItem
  21. {
  22. public:
  23. virtual IMBoardListItem* GetNext( void ) PURE;
  24. virtual void SetNext( IMBoardListItem *Item ) PURE;
  25. };
  26. //***************************************************************************
  27. //
  28. //***************************************************************************
  29. //***************************************************************************
  30. // End of
  31. //***************************************************************************