comparison src/event-msw.c @ 1685:29c45c1b64f3

[xemacs-hg @ 2003-09-15 21:19:11 by james] Quiet compiler warnings on Cygwin.
author james
date Mon, 15 Sep 2003 21:19:17 +0000
parents bf2a986fcb17
children a4b5e2effaff
comparison
equal deleted inserted replaced
1684:fba0799e2d79 1685:29c45c1b64f3
3791 pszFile parameter. 3791 pszFile parameter.
3792 3792
3793 But "cch" means "count of characters", not bytes. I'll assume the doc 3793 But "cch" means "count of characters", not bytes. I'll assume the doc
3794 writers messed up and the programmer was correct. Also, this approach 3794 writers messed up and the programmer was correct. Also, this approach
3795 is safe even if it's actually the other way around. */ 3795 is safe even if it's actually the other way around. */
3796 #if defined (CYGWIN_HEADERS) && !defined (W32API_2_2) 3796 #if defined (CYGWIN_HEADERS) && W32API_INSTALLED_VER < W32API_VER(2,2)
3797 /* Another Cygwin prototype error, 3797 /* Another Cygwin prototype error,
3798 fixed in v2.2 of w32api */ 3798 fixed in v2.2 of w32api */
3799 XECOMCALL4 (psl, GetPath, (LPSTR) resolved, 3799 XECOMCALL4 (psl, GetPath, (LPSTR) resolved,
3800 PATH_MAX, &wfd, 0) 3800 PATH_MAX, &wfd, 0)
3801 #else 3801 #else