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

输入法编程

开发平台:

Visual C++

  1. #if !defined(myWindowsAttribset)
  2. #define  myWindowsAttribset
  3. #define LWA_COLORKEY  0x00000001 
  4. #define WS_EX_LAYERED     0x080000L
  5. #define LWA_ALPHA  2
  6. typedef BOOL (WINAPI *lpfnSetLayeredWindowAttributes)(HWND hWnd, COLORREF crKey, BYTE bAlpha, DWORD dwFlags);
  7. class myWinAttrib
  8. {
  9. HMODULE hUser32;
  10. int isset;
  11.     BOOL MyIsWinNT();
  12. public:
  13. myWinAttrib();
  14. ~myWinAttrib();
  15. lpfnSetLayeredWindowAttributes SetLayeredWindowAttributes; 
  16.     int mySetWindow(HWND hWnd , long crKey, BYTE bAlpha, DWORD dwFlags);
  17. };
  18. #endif