diff src/w32.c @ 27890:91be3fa84ccb

(init_environment): Set Vw32_num_mouse_buttons here.
author Jason Rumney <jasonr@gnu.org>
date Sun, 27 Feb 2000 21:28:38 +0000
parents 95dde6f88b39
children f8b0ac62f238
line wrap: on
line diff
--- a/src/w32.c	Sun Feb 27 21:26:58 2000 +0000
+++ b/src/w32.c	Sun Feb 27 21:28:38 2000 +0000
@@ -91,6 +91,7 @@
 extern Lisp_Object Vw32_downcase_file_names;
 extern Lisp_Object Vw32_generate_fake_inodes;
 extern Lisp_Object Vw32_get_true_file_attributes;
+extern Lisp_Object Vw32_num_mouse_buttons;
 
 static char startup_dir[MAXPATHLEN];
 
@@ -787,6 +788,11 @@
     argv[0] = modname;
   }
 
+  /* Determine if there is a middle mouse button, to allow parse_button
+     to decide whether right mouse events should be mouse-2 or
+     mouse-3. */
+  XSETINT (Vw32_num_mouse_buttons, GetSystemMetrics (SM_CMOUSEBUTTONS));
+
   init_user_info ();
 }