Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
396 B

  1. #ifndef __GLWININT_H__
  2. #define __GLWININT_H__
  3. typedef struct _GLWINDOW *GLWINDOW;
  4. #define __GLWIN_INTERNAL__
  5. #include <glwin.h>
  6. typedef struct _GLWINDOW
  7. {
  8. HWND hwnd;
  9. HDC hdc;
  10. HPALETTE hpal;
  11. HGLRC hrc;
  12. DWORD dwFlags;
  13. int iWidth;
  14. int iHeight;
  15. GLWINIDLECALLBACK cbIdle;
  16. GLWINMESSAGECALLBACK cbMessage;
  17. BOOL bClosing;
  18. } _GLWINDOW;
  19. #endif // __GLWININT_H__