1999-11-11 22:12:27 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-11-11 22:12:27 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1999-11-11 22:12:27 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1999-11-11 22:12:27 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-11-11 22:12:27 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gdktypes.h"
|
1999-11-20 01:22:57 +00:00
|
|
|
#include "gdkprivate-win32.h"
|
1999-11-11 22:12:27 +00:00
|
|
|
|
|
|
|
HWND gdk_root_window = NULL;
|
1999-11-20 01:22:57 +00:00
|
|
|
gint gdk_event_func_from_window_proc = FALSE;
|
2000-07-23 21:43:23 +00:00
|
|
|
HDC gdk_display_hdc;
|
|
|
|
HINSTANCE gdk_dll_hinstance;
|
2001-10-29 06:50:55 +00:00
|
|
|
HINSTANCE gdk_app_hmodule;
|
1999-11-11 22:12:27 +00:00
|
|
|
UINT gdk_selection_notify_msg;
|
|
|
|
UINT gdk_selection_request_msg;
|
|
|
|
UINT gdk_selection_clear_msg;
|
|
|
|
GdkAtom gdk_clipboard_atom;
|
|
|
|
GdkAtom gdk_win32_dropfiles_atom;
|
|
|
|
GdkAtom gdk_ole2_dnd_atom;
|
2001-10-29 06:50:55 +00:00
|
|
|
GdkAtom _gdk_selection_property;
|
1999-11-11 22:12:27 +00:00
|
|
|
DWORD windows_version = 0;
|
2000-07-25 17:31:05 +00:00
|
|
|
gint gdk_input_ignore_wintab = FALSE;
|