Declare GetAncestor() and define GA_PARENT if missing (MSVC6). (#311633)

2005-07-26  Tor Lillqvist  <tml@novell.com>

	* gtk/gtkplug-win32.c: Declare GetAncestor() and define GA_PARENT
	if missing (MSVC6). (#311633)
This commit is contained in:
Tor Lillqvist
2005-07-26 20:42:18 +00:00
committed by Tor Lillqvist
parent 08f09dc083
commit 624016fee6
4 changed files with 22 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2005-07-26 Tor Lillqvist <tml@novell.com>
* gtk/gtkplug-win32.c: Declare GetAncestor() and define GA_PARENT
if missing (MSVC6). (#311633)
2005-07-26 Federico Mena Quintero <federico@ximian.com>
* perf/: New directory with the start of a framework for testing

View File

@@ -1,3 +1,8 @@
2005-07-26 Tor Lillqvist <tml@novell.com>
* gtk/gtkplug-win32.c: Declare GetAncestor() and define GA_PARENT
if missing (MSVC6). (#311633)
2005-07-26 Federico Mena Quintero <federico@ximian.com>
* perf/: New directory with the start of a framework for testing

View File

@@ -1,3 +1,8 @@
2005-07-26 Tor Lillqvist <tml@novell.com>
* gtk/gtkplug-win32.c: Declare GetAncestor() and define GA_PARENT
if missing (MSVC6). (#311633)
2005-07-26 Federico Mena Quintero <federico@ximian.com>
* perf/: New directory with the start of a framework for testing

View File

@@ -34,6 +34,13 @@
#include "gtkwin32embed.h"
#if defined(_MSC_VER) && (WINVER < 0x0500)
#ifndef GA_PARENT
#define GA_PARENT 1
#endif
WINUSERAPI HWND WINAPI GetAncestor(HWND,UINT);
#endif
GdkNativeWindow
_gtk_plug_windowing_get_id (GtkPlug *plug)
{