C_Editor.h
上传用户:hgtech
上传日期:2022-06-07
资源大小:4455k
文件大小:2k
源码类别:

词法分析

开发平台:

Visual C++

  1. // C_Editor.h : main header file for the C_EDITOR application
  2. //
  3. #if !defined(AFX_C_EDITOR_H__0D9CEA3F_E3E6_402F_96D0_CAF647EFE68A__INCLUDED_)
  4. #define AFX_C_EDITOR_H__0D9CEA3F_E3E6_402F_96D0_CAF647EFE68A__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. // CC_EditorApp:
  14. // See C_Editor.cpp for the implementation of this class
  15. //
  16. /////////////////////////////////////////////////////////////////////////////
  17. // GLOBAL FUNCTIONS
  18. // Output Bar
  19. extern BOOL bErrFlag;
  20. extern CWnd* pOutputAttachedView;
  21. void ShowOutput();
  22. void ClearOutput();
  23. void OutputPhaseMsg( LPCTSTR msg );
  24. void OutputErrMsg( char* format, ... );
  25. void ClearErrFlag();
  26. void SetOutputAttachedView( CWnd* pView );
  27. BOOL IsViewAttached( CWnd* pView );
  28. void DeattachOutputView();
  29. class CC_EditorApp : public CWinApp
  30. {
  31. public:
  32. CC_EditorApp();
  33. // Overrides
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CC_EditorApp)
  36. public:
  37. virtual BOOL InitInstance();
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. //{{AFX_MSG(CC_EditorApp)
  41. afx_msg void OnAppAbout();
  42. // NOTE - the ClassWizard will add and remove member functions here.
  43. //    DO NOT EDIT what you see in these blocks of generated code !
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_C_EDITOR_H__0D9CEA3F_E3E6_402F_96D0_CAF647EFE68A__INCLUDED_)