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.

47 lines
855 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. Mustard.h : main header file for the MUSTARD application
  5. File History:
  6. JonY Jan-96 created
  7. --*/
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h" // main symbols
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMustardApp:
  14. // See Mustard.cpp for the implementation of this class
  15. //
  16. class CMustardApp : public CWinApp
  17. {
  18. public:
  19. CMustardApp();
  20. BOOL IsSecondInstance();
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMustardApp)
  24. public:
  25. virtual BOOL InitInstance();
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. //{{AFX_MSG(CMustardApp)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. /////////////////////////////////////////////////////////////////////////////