win32: Avoid type warning for offscreen windows in xp theme
See bug #598299
This commit is contained in:
committed by
Alexander Larsson
parent
6c71da01cc
commit
213994b565
@ -73,6 +73,9 @@ G_BEGIN_DECLS
|
||||
#endif
|
||||
|
||||
|
||||
/* Return true if the GdkWindow is a win32 implemented window */
|
||||
gboolean gdk_win32_window_is_win32 (GdkWindow *window);
|
||||
|
||||
/* Return the Gdk* for a particular HANDLE */
|
||||
gpointer gdk_win32_handle_table_lookup (GdkNativeWindow handle);
|
||||
|
||||
|
||||
@ -3378,6 +3378,12 @@ gdk_window_impl_iface_init (GdkWindowImplIface *iface)
|
||||
iface->destroy = _gdk_win32_window_destroy;
|
||||
}
|
||||
|
||||
gboolean
|
||||
gdk_win32_window_is_win32 (GdkWindow *window)
|
||||
{
|
||||
return GDK_WINDOW_IS_WIN32 (window);
|
||||
}
|
||||
|
||||
GdkDrawable *
|
||||
gdk_win32_begin_direct_draw_libgtk_only (GdkDrawable *drawable,
|
||||
GdkGC *gc,
|
||||
|
||||
Reference in New Issue
Block a user