More of the same

This commit is contained in:
Sam Lantinga 2009-02-09 06:42:38 +00:00
parent 5dcf7511db
commit 33ba78ff59

View File

@ -11,8 +11,8 @@
typedef struct
{
const char *tag;
void *(*CreateWindow) (int w, int h);
void (*DestroyWindow) (void *window);
void *(*CreateNativeWindow) (int w, int h);
void (*DestroyNativeWindow) (void *window);
} NativeWindowFactory;
#ifdef SDL_VIDEO_DRIVER_WIN32