KWin32Wnd.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //---------------------------------------------------------------------------
  2. // Sword3 Engine (c) 1999-2000 by Kingsoft
  3. //
  4. // File: KWin32Wnd.h
  5. // Date: 2000.08.08
  6. // Code: WangWei(Daphnis)
  7. // Desc: Header File
  8. //---------------------------------------------------------------------------
  9. #ifndef KWin32Wnd_H
  10. #define KWin32Wnd_H
  11. //---------------------------------------------------------------------------
  12. ENGINE_API HWND g_GetMainHWnd();
  13. ENGINE_API void g_SetMainHWnd(HWND hWnd);
  14. ENGINE_API HWND g_GetDrawHWnd();
  15. ENGINE_API void g_SetDrawHWnd(HWND hWnd);
  16. //---------------------------------------------------------------------------
  17. ENGINE_API void g_GetClientRect(LPRECT lpRect);
  18. ENGINE_API void g_ClientToScreen(LPRECT lpRect);
  19. ENGINE_API void g_ScreenToClient(LPRECT lpRect);
  20. ENGINE_API void g_ScreenToClient(LPPOINT lpPoint);
  21. ENGINE_API void g_ChangeWindowStyle();
  22. //---------------------------------------------------------------------------
  23. #endif