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.

46 lines
1.1 KiB

  1. // pdlcnfig.h : main header file for the pdlcnfig application
  2. //
  3. #ifndef _PDLCNFIG_H_
  4. #define _PDLCNFIG_H_
  5. #ifndef __AFXWIN_H__
  6. #error include 'stdafx.h' before including this file for PCH
  7. #endif
  8. #include <tchar.h>
  9. #include "resource.h" // main symbols
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CPdlConfigApp:
  12. // See PDLCNFIG.cpp for the implementation of this class
  13. //
  14. class CPdlConfigApp : public CWinApp
  15. {
  16. public:
  17. CPdlConfigApp();
  18. LONG PerfLogServiceStatus();
  19. LONG ServiceFilesCopied();
  20. LONG CreatePerfDataLogService ();
  21. LONG InitPerfDataLogRegistry ();
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CPdlConfigApp)
  25. public:
  26. virtual BOOL InitInstance();
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. //{{AFX_MSG(CPdlConfigApp)
  30. // NOTE - the ClassWizard will add and remove member functions here.
  31. // DO NOT EDIT what you see in these blocks of generated code !
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. /////////////////////////////////////////////////////////////////////////////
  36. #endif // _PDLCNFIG_H_
  37.