mydll.h
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // mydll.h : main header file for the MYDLL DLL
  2. //
  3. #if !defined(AFX_MYDLL_H__227F0AE7_DED7_41DF_907D_35F7F2D740FD__INCLUDED_)
  4. #define AFX_MYDLL_H__227F0AE7_DED7_41DF_907D_35F7F2D740FD__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. // CMydllApp
  14. // See mydll.cpp for the implementation of this class
  15. //
  16. void DrawEllipse(CClientDC*pDC,int x1,int y1,int x2,int y2);
  17. void DrawRectangle(CClientDC*pDC,int x1,int y1,int x2,int y2);
  18. class CMydllApp : public CWinApp
  19. {
  20. public:
  21. CMydllApp();
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMydllApp)
  25. //}}AFX_VIRTUAL
  26. //{{AFX_MSG(CMydllApp)
  27. // NOTE - the ClassWizard will add and remove member functions here.
  28. //    DO NOT EDIT what you see in these blocks of generated code !
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. /////////////////////////////////////////////////////////////////////////////
  33. //{{AFX_INSERT_LOCATION}}
  34. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  35. #endif // !defined(AFX_MYDLL_H__227F0AE7_DED7_41DF_907D_35F7F2D740FD__INCLUDED_)