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.

44 lines
1.1 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1999 - 2000
  6. //
  7. // File: processinfonode.h
  8. //
  9. //--------------------------------------------------------------------------
  10. // ProcessInfoNode.h: interface for the CProcessInfoNode class.
  11. //
  12. //////////////////////////////////////////////////////////////////////
  13. #if !defined(AFX_PROCESSINFONODE_H__0D2E8503_A01A_11D2_83A8_000000000000__INCLUDED_)
  14. #define AFX_PROCESSINFONODE_H__0D2E8503_A01A_11D2_83A8_000000000000__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. #ifndef NO_STRICT
  19. #ifndef STRICT
  20. #define STRICT 1
  21. #endif
  22. #endif /* NO_STRICT */
  23. #include <WINDOWS.H>
  24. #include <TCHAR.H>
  25. class CProcessInfo; // Forward Declarations
  26. class CProcessInfoNode
  27. {
  28. public:
  29. CProcessInfoNode(CProcessInfo * lpProcessInfo);
  30. virtual ~CProcessInfoNode();
  31. CProcessInfoNode * m_lpNextProcessInfoNode;
  32. CProcessInfo * m_lpProcessInfo;
  33. };
  34. #endif // !defined(AFX_PROCESSINFONODE_H__0D2E8503_A01A_11D2_83A8_000000000000__INCLUDED_)