2025-04-27 07:49:33 -04:00

10 lines
205 B
C

typedef struct _OglModule
{
char *name;
GLenum (*DisplayMode)(void);
void (*Bounds)(int *w, int *h);
void (*Init)(HDC hdc);
void (*Draw)(int w, int h);
} OglModule;