diff options
author | Sven Gothel <[email protected]> | 2010-11-22 12:51:52 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-22 12:51:52 +0100 |
commit | a3f593158b25f78027504129c343b9aab433183d (patch) | |
tree | 78b1ce61415becc29d7505228b768fc84f48c824 /src/nativewindow/native/windows | |
parent | 350b35a202fcc268b9d732b305418b2e76746501 (diff) |
NativeWindow/Windows: Fix CreateDummyWindow gluegen and usage
NativeWindow+JOGL/Windows: Complete Opaque types
Diffstat (limited to 'src/nativewindow/native/windows')
-rw-r--r-- | src/nativewindow/native/windows/GDImisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nativewindow/native/windows/GDImisc.c b/src/nativewindow/native/windows/GDImisc.c index 3c1001115..427e15d4a 100644 --- a/src/nativewindow/native/windows/GDImisc.c +++ b/src/nativewindow/native/windows/GDImisc.c @@ -66,7 +66,7 @@ LRESULT CALLBACK DummyWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM l return DefWindowProc(hWnd,uMsg,wParam,lParam); } -HWND CreateDummyWindow(HINSTANCE hInstance, int x, int y, int width, int height ) { +HWND CreateDummyWindow0(HINSTANCE hInstance, int x, int y, int width, int height ) { DWORD dwExStyle; DWORD dwStyle; HWND hWnd; |