From 2df0f55c5d0e6d7e04f80acd05be6ba03d6d1811 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 9 Feb 2009 06:42:38 +0000 Subject: [PATCH] More of the same --- test/testnative.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testnative.h b/test/testnative.h index ffa2710ca..2e049a126 100644 --- a/test/testnative.h +++ b/test/testnative.h @@ -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