myHDC.h
上传用户:hyb6888
上传日期:2016-01-24
资源大小:5186k
文件大小:1k
源码类别:

输入法编程

开发平台:

Visual C++

  1. #if !defined(myProcessHDC)
  2. #define  myProcessHDC
  3. /////////////////////////////////////////////////////////////////////////////
  4. // manmy view
  5. class myHDC 
  6. {
  7. protected:
  8. HBITMAP outhBMP;
  9. public:
  10. long Width, Height;
  11. long LoadPicWidth, LoadPicHeight;
  12. HBITMAP bmpBITMAP;
  13. char Picname[256];
  14. HDC  outhdc;
  15. HDC  hdc;
  16. HWND  hwnd;
  17. ~myHDC();           // protected constructor used by dynamic creation
  18. myHDC(); 
  19. reSelectBAKHDC(); 
  20. StartHDC(HDC  pFarHDC,long pFarWidth,long pFarHeight);
  21. HBITMAP loadPic(char * myFilename);
  22. // Operations
  23. };
  24. #endif