Styler.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // Styler.h : main header file for the STYLER application
  2. //
  3. #if !defined(AFX_STYLER_H__E5C751C5_9965_11D6_874C_0050228CE6CB__INCLUDED_)
  4. #define AFX_STYLER_H__E5C751C5_9965_11D6_874C_0050228CE6CB__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  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. // CStylerApp:
  14. // See Styler.cpp for the implementation of this class
  15. //
  16. class CStylerApp : public CWinApp
  17. {
  18. public:
  19. CStylerApp();
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CStylerApp)
  23. public:
  24. virtual BOOL InitInstance();
  25. virtual BOOL ExitInstance();
  26. //}}AFX_VIRTUAL
  27. protected:
  28. BOOL OneInstance(CCommandLineInfo&);
  29. BOOL ProcessShellCommand(CCommandLineInfo& cmdInfo);
  30. // Implementation
  31. //{{AFX_MSG(CStylerApp)
  32. afx_msg void OnAppAbout();
  33. // NOTE - the ClassWizard will add and remove member functions here.
  34. //    DO NOT EDIT what you see in these blocks of generated code !
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. CString GetModuleDir();
  42. inline BOOL PathFileExists(CString str)
  43. {
  44. CFileStatus fStatus;
  45. if (! CFile::GetStatus(str, fStatus))
  46. return FALSE;
  47. return TRUE;
  48. }
  49. #endif // !defined(AFX_STYLER_H__E5C751C5_9965_11D6_874C_0050228CE6CB__INCLUDED_)