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

输入法编程

开发平台:

Visual C++

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