cWindow.h
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. // CMAIN LIB - APPLICATION AND DIRECT WRAPPER
  2. //
  3. // Written by Mauricio Teichmann Ritter
  4. //
  5. // Copyright (C) 2002, Brazil. All rights reserved.
  6. // 
  7. //
  8. #include "stdafx.h"
  9. long FAR PASCAL MainWndproc( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam );
  10. #ifndef _APPLIB_WNDCLASS_
  11. #define _APPLIB_WNDCLASS_
  12. class cWindow
  13. {
  14. private:
  15. LPSTR m_lpszClassName;
  16. public:
  17. HWND GetHWnd();
  18. cWindow()
  19. {
  20. }
  21. ~cWindow()
  22. {
  23. if(m_hWnd)
  24. {
  25. DestroyWindow(m_hWnd);
  26. }
  27. }
  28. BOOL Create(LPSTR lpszWindowName);
  29. BOOL RegisterWindow(LPSTR);
  30. private:
  31. HWND m_hWnd;
  32. };
  33. #endif