summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-08-30 10:26:19 +0000
committerBram Moolenaar <Bram@vim.org>2007-08-30 10:26:19 +0000
commit78e1762c4888f5faf3920f01bcc94d8c1b8adb3a (patch)
tree155463ad46bcc256f96a9c8a839ff287868eff51 /src/globals.h
parent1a3d086c84dad1f52b623cda1bfe36d88d8cfd9a (diff)
updated for version 7.1-091v7.1.091
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h
index edd4c79bdf..d6e879a017 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -876,7 +876,7 @@ EXTERN int Exec_reg INIT(= FALSE); /* TRUE when executing a register */
EXTERN int no_mapping INIT(= FALSE); /* currently no mapping allowed */
EXTERN int no_zero_mapping INIT(= 0); /* mapping zero not allowed */
EXTERN int allow_keys INIT(= FALSE); /* allow key codes when no_mapping
- * is set */
+ * is set */
EXTERN int no_u_sync INIT(= 0); /* Don't call u_sync() */
EXTERN int restart_edit INIT(= 0); /* call edit when next cmd finished */
@@ -1252,6 +1252,14 @@ EXTERN guint32 gtk_socket_id INIT(= 0);
EXTERN int echo_wid_arg INIT(= FALSE); /* --echo-wid argument */
#endif
+#ifdef FEAT_GUI_W32
+/*
+ * The value of the --windowid argument.
+ * For embedding gvim inside another application.
+ */
+EXTERN int win_socket_id INIT(= 0);
+#endif
+
#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
EXTERN int typebuf_was_filled INIT(= FALSE); /* received text from client
or from feedkeys() */