windows-nt/Source/XPSP1/NT/multimedia/opengl/test/glwin/lib/glwinint.h
2020-09-26 16:20:57 +08:00

24 lines
396 B
C

#ifndef __GLWININT_H__
#define __GLWININT_H__
typedef struct _GLWINDOW *GLWINDOW;
#define __GLWIN_INTERNAL__
#include <glwin.h>
typedef struct _GLWINDOW
{
HWND hwnd;
HDC hdc;
HPALETTE hpal;
HGLRC hrc;
DWORD dwFlags;
int iWidth;
int iHeight;
GLWINIDLECALLBACK cbIdle;
GLWINMESSAGECALLBACK cbMessage;
BOOL bClosing;
} _GLWINDOW;
#endif // __GLWININT_H__