DrawCli.h
上传用户:seaboy_04
上传日期:2013-02-24
资源大小:284k
文件大小:2k
源码类别:

其他行业

开发平台:

Visual C++

  1. // DrawCli.h : main header file for the DRAWCLI application
  2. //
  3. #if !defined(AFX_DRAWCLI_H__D8C91276_DF05_4257_A506_C1232A8E8595__INCLUDED_)
  4. #define AFX_DRAWCLI_H__D8C91276_DF05_4257_A506_C1232A8E8595__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. #include <afxtempl.h>       // drawcli uses collection class templates
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CDrawApp:
  15. // See DrawCli.cpp for the implementation of this class
  16. //
  17. #if !defined(MAX_AI_AO)
  18. #define MAX_AI_AO 1024
  19. #endif
  20. #if !defined(MAX_DI_DO)
  21. #define MAX_DI_DO 1024
  22. #endif
  23. class Data_Bus{
  24. public:
  25. double  AI_AO[MAX_AI_AO];
  26.     BOOL    DI_DO[MAX_DI_DO];
  27. };
  28. #define WM_DEMO_DATA WM_USER+1
  29. class CDrawApp : public CWinApp
  30. {
  31. public:
  32. CDrawApp();
  33. // Overrides
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CDrawApp)
  36. public:
  37. virtual BOOL InitInstance();
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. //{{AFX_MSG(CDrawApp)
  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_DRAWCLI_H__D8C91276_DF05_4257_A506_C1232A8E8595__INCLUDED_)