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.

53 lines
1.3 KiB

  1. //+---------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1993 - 1997.
  5. //
  6. // File: olecnfg.h
  7. //
  8. // Contents: Implements the class COlecnfgApp - the top level class
  9. // for dcomcnfg.exe
  10. //
  11. // Classes:
  12. //
  13. // Methods:
  14. //
  15. // History: 23-Apr-96 BruceMa Created.
  16. //
  17. //----------------------------------------------------------------------
  18. #ifndef __AFXWIN_H__
  19. #error include 'stdafx.h' before including this file for PCH
  20. #endif
  21. #include "resource.h" // main symbols
  22. /////////////////////////////////////////////////////////////////////////////
  23. // COlecnfgApp:
  24. // See olecnfg.cpp for the implementation of this class
  25. //
  26. class COlecnfgApp : public CWinApp
  27. {
  28. public:
  29. COlecnfgApp();
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(COlecnfgApp)
  33. public:
  34. virtual BOOL InitInstance();
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. //{{AFX_MSG(COlecnfgApp)
  38. // NOTE - the ClassWizard will add and remove member functions here.
  39. // DO NOT EDIT what you see in these blocks of generated code !
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////