comparison src/nt.c @ 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 0784d089fdc9
children ed498ef2108b
comparison
equal deleted inserted replaced
545:9a775fb11bb7 546:666d73d6ac56
1214 ret -= utc_base; 1214 ret -= utc_base;
1215 return (time_t) (ret * 1e-7); 1215 return (time_t) (ret * 1e-7);
1216 } 1216 }
1217 #else 1217 #else
1218 1218
1219 #if defined(MINGW) && CYGWIN_VERSION_DLL_MAJOR <= 21
1220 #define LowPart u.LowPart
1221 #define HighPart u.HighPart
1222 #endif
1223
1224 static LARGE_INTEGER utc_base_li; 1219 static LARGE_INTEGER utc_base_li;
1225 1220
1226 time_t 1221 time_t
1227 convert_time (FILETIME uft) 1222 convert_time (FILETIME uft)
1228 { 1223 {