summaryrefslogtreecommitdiff
path: root/gdk/win32/gdkglobals.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@src.gnome.org>1999-11-11 22:12:27 +0000
committerTor Lillqvist <tml@src.gnome.org>1999-11-11 22:12:27 +0000
commit638ebcee70012cb959b6c210f6f4c08ad64689b6 (patch)
treea4706ce01ee6fe98adf3be6d10d215345283ee5e /gdk/win32/gdkglobals.c
parent7ca8753ac5c07891741fcb8d79bb0828c72eea52 (diff)
downloadgdk-pixbuf-638ebcee70012cb959b6c210f6f4c08ad64689b6.tar.gz
re-adding for manual rename of repository files.
Diffstat (limited to 'gdk/win32/gdkglobals.c')
-rw-r--r--gdk/win32/gdkglobals.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/gdk/win32/gdkglobals.c b/gdk/win32/gdkglobals.c
new file mode 100644
index 000000000..4f9f498a7
--- /dev/null
+++ b/gdk/win32/gdkglobals.c
@@ -0,0 +1,51 @@
+/* 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
+ * modify it under the terms of the GNU Library General Public
+ * 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
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * 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"
+#include "gdkprivate.h"
+
+guint gdk_debug_flags = 0;
+HWND gdk_root_window = NULL;
+HWND gdk_leader_window;
+GDKVAR GdkWindowPrivate *gdk_root_parent = NULL;
+HDC gdk_DC;
+HINSTANCE gdk_DLLInstance;
+HINSTANCE gdk_ProgInstance;
+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;
+Atom gdk_selection_property;
+gchar *gdk_progclass = NULL;
+gint gdk_error_code;
+gint gdk_error_warnings = TRUE;
+gint gdk_null_window_warnings = TRUE;
+
+GMutex *gdk_threads_mutex = NULL;
+
+DWORD windows_version = 0;