diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2001-03-06 12:05:45 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2001-03-06 12:05:45 +0000 |
commit | 7cdc9feea1d8fcd016a842155c30308e4a0cae3d (patch) | |
tree | d5c731512d57f68043d03c0c9ff6095af508613e /winsup/cygwin/automode.c | |
parent | cfc05d9675436a157ea959a5fb06da60722234c7 (diff) | |
download | newlib-7cdc9feea1d8fcd016a842155c30308e4a0cae3d.zip newlib-7cdc9feea1d8fcd016a842155c30308e4a0cae3d.tar.gz newlib-7cdc9feea1d8fcd016a842155c30308e4a0cae3d.tar.bz2 |
* autoload.c (cygwin_premain0): Add missing parameter.
* binmode.c (cygwin_premain0): Ditto.
* textmode.c (cygwin_premain0): Ditto.
Patch contributed by Jason Tiller <jtiller@sjm.com> :
* auto_load.cc: Add "GetKeyboardLayout" entry in the list of
Win32 User32.DLL exports to provide.
* fhandler.h (class fhandler_console): Add meta_mask private
member to remember which keystroke modifiers should generate
META.
* fhandler_console.cc (fhandler_console::read): Modify code that
tests a keystroke for a META-escaped key to use the 'meta_mask'
variable.
(fhandler_console::fhandler_console): Add definition for
variable "meta_mask" used to determine if a keystroke should be
preceded by META in the client console stream. Set meta_mask
based on whether or not user's keyboard language is English -
non-English keyboards pass AltGr (right <ALT>) unmolested,
whereas English keyboards now interpret left- and right-<ALT>
as META.
Diffstat (limited to 'winsup/cygwin/automode.c')
-rw-r--r-- | winsup/cygwin/automode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/automode.c b/winsup/cygwin/automode.c index e02b0b9..f7cddfe 100644 --- a/winsup/cygwin/automode.c +++ b/winsup/cygwin/automode.c @@ -14,7 +14,7 @@ details. */ extern int _fmode; void -cygwin_premain0 (int argc, char **argv) +cygwin_premain0 (int argc, char **argv, struct per_process *myself) { static struct __cygwin_perfile pf[] = { |