Mercurial > hg > xemacs-beta
comparison src/syswindows.h @ 546:666d73d6ac56
[xemacs-hg @ 2001-05-20 01:17:07 by ben]
fixes so MinGW compiles.
console-msw.h, scrollbar-msw.c, event-msw.c: we might receive scrollbar events on windows without scrollbars
(e.g. holding down and moving the wheel button).
dired.c: win9x support.
eval.c: doc comment about gcpro'ing in record_unwind_protect.
frame-msw.c: typo.
frame.c: avoid problems with errors during init_frame_3.
process-nt.c: remove unused mswindows-quote-process-args. rec for 21.4.
unexcw.c: use do/while.
autoload.el: Oops, off by one argument.
mouse.el: Add an argument to mouse-track so that hooks can be overridden.
(let-binding doesn't work when the hooks have been made local.)
modify mouse-track-run-hook accordingly, and fix mouse-track-default
and mouse-track-insert to use the new functionality.
printer.el: Oops, off by one paren.
author | ben |
---|---|
date | Sun, 20 May 2001 01:17:16 +0000 |
parents | 0493e9f3c27f |
children | ed498ef2108b |
comparison
equal
deleted
inserted
replaced
545:9a775fb11bb7 | 546:666d73d6ac56 |
---|---|
55 #define WIN32_LEAN_AND_MEAN | 55 #define WIN32_LEAN_AND_MEAN |
56 #endif | 56 #endif |
57 | 57 |
58 #include <windows.h> | 58 #include <windows.h> |
59 | 59 |
60 #if (defined (CYGWIN) || defined(MINGW)) && \ | 60 #if defined (CYGWIN) && CYGWIN_VERSION_DLL_MAJOR < 21 |
61 CYGWIN_VERSION_DLL_MAJOR < 21 | |
62 extern BOOL WINAPI DdeFreeStringHandle(DWORD,HSZ); | 61 extern BOOL WINAPI DdeFreeStringHandle(DWORD,HSZ); |
63 extern BOOL WINAPI PlaySound(LPCSTR,HMODULE,DWORD); | 62 extern BOOL WINAPI PlaySound(LPCSTR,HMODULE,DWORD); |
64 #define stricmp strcasecmp | 63 #define stricmp strcasecmp |
65 #define FONTENUMPROC FONTENUMEXPROC | 64 #define FONTENUMPROC FONTENUMEXPROC |
66 #define ntmTm ntmentm | 65 #define ntmTm ntmentm |
77 #include <mmsystem.h> | 76 #include <mmsystem.h> |
78 #include <shellapi.h> | 77 #include <shellapi.h> |
79 #include <ddeml.h> | 78 #include <ddeml.h> |
80 #endif | 79 #endif |
81 | 80 |
82 #include <lmaccess.h> | 81 #include <lmaccess.h> /* next three for NetUserEnum and friends */ |
83 #include <lmapibuf.h> | 82 #include <lmapibuf.h> |
84 #include <lmerr.h> | 83 #include <lmerr.h> |
84 #include <lmcons.h> /* for UNLEN and possibly other constants */ | |
85 | 85 |
86 /* mmsystem.h defines. */ | 86 /* mmsystem.h defines. */ |
87 #ifndef SND_ASYNC | 87 #ifndef SND_ASYNC |
88 #define SND_ASYNC 1 | 88 #define SND_ASYNC 1 |
89 #endif | 89 #endif |