Bmptest.h
上传用户:cjd055
上传日期:2013-04-01
资源大小:608k
文件大小:1k
源码类别:

交通/航空行业

开发平台:

Visual C++

  1. // BmpTest.h : main header file for the BMPTEST application
  2. //
  3. #if !defined(AFX_BMPTEST_H__F2A2D31D_AFA8_11D3_9460_0000000038B2__INCLUDED_)
  4. #define AFX_BMPTEST_H__F2A2D31D_AFA8_11D3_9460_0000000038B2__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. #define WIDTHBYTES(bits)    (((bits) + 31) / 32 * 4)
  12. #include "resource.h"       // main symbols
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CBmpTestApp:
  15. // See BmpTest.cpp for the implementation of this class
  16. //
  17. class CBmpTestApp : public CWinApp
  18. {
  19. public:
  20. CBmpTestApp();
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CBmpTestApp)
  24. public:
  25. virtual BOOL InitInstance();
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. //{{AFX_MSG(CBmpTestApp)
  29. afx_msg void OnAppAbout();
  30. // NOTE - the ClassWizard will add and remove member functions here.
  31. //    DO NOT EDIT what you see in these blocks of generated code !
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. typedef struct {
  36.     int number;
  37.     float dist;
  38.     char name[20];
  39. } DISTANCE;
  40. typedef DISTANCE* PDISTANCE;
  41. /////////////////////////////////////////////////////////////////////////////
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_BMPTEST_H__F2A2D31D_AFA8_11D3_9460_0000000038B2__INCLUDED_)