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

输入法编程

开发平台:

Visual C++

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