Cell.h
上传用户:mjs2008
上传日期:2021-05-16
资源大小:5089k
文件大小:2k
源码类别:

生物技术

开发平台:

Visual C++

  1. // Cell.h : main header file for the CELL application
  2. //
  3. #if !defined(AFX_CELL_H__AE373C3D_CA2F_4FB3_A3D9_E3CB50204329__INCLUDED_)
  4. #define AFX_CELL_H__AE373C3D_CA2F_4FB3_A3D9_E3CB50204329__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. // CCellApp:
  14. // See Cell.cpp for the implementation of this class
  15. //
  16. class CCellApp : public CWinApp
  17. {
  18. public:
  19. CCellApp();
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CCellApp)
  23. public:
  24. virtual BOOL InitInstance();
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. //{{AFX_MSG(CCellApp)
  28. afx_msg void OnAppAbout();
  29. // NOTE - the ClassWizard will add and remove member functions here.
  30. //    DO NOT EDIT what you see in these blocks of generated code !
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. /////////////////////////////////////////////////////////////////////////////
  35. /////////////////////////////
  36. // extern global
  37. extern CCellApp theApp;
  38. extern HBITMAP g_hBitmap;
  39. // CHSIDlg dialog
  40. extern int g_nIntGap;
  41. extern int g_nSatGap;
  42. extern int g_nHueGap;
  43. #define INDEX(i,j) j*g_nMapWidth+i
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_CELL_H__AE373C3D_CA2F_4FB3_A3D9_E3CB50204329__INCLUDED_)