view test/testnativew32.c @ 3059:79b061c4f316

Whoops, missed a file
author Sam Lantinga <slouken@libsdl.org>
date Mon, 09 Feb 2009 06:28:45 +0000
parents 089a77aebb7d
children 4cf533f434d8
line wrap: on
line source


#include "testnative.h"

#ifdef TEST_NATIVE_WIN32

static void *CreateWindowWin32(int w, int h);
static void DestroyWindowWin32(void *window);

NativeWindowFactory Win32WindowFactory = {
    "win32",
    CreateWindowWin32,
    DestroyWindowWin32
};

static Display *dpy;

static void *
CreateWindowWin32(int w, int h)
{
    return NULL;
}

static void
DestroyWindowWin32(void *window)
{
}

#endif