Mercurial > hg > xemacs-beta
comparison src/event-msw.c @ 1304:579d37cb4395
[xemacs-hg @ 2003-02-15 11:20:38 by ben]
make-src-depend updated in previous checkin but omitted in patcher; this time just correct the usage note and check in the changelog
author | ben |
---|---|
date | Sat, 15 Feb 2003 11:20:40 +0000 |
parents | f3437b56874d |
children | b531bf8658e9 |
comparison
equal
deleted
inserted
replaced
1303:f99d3d25df86 | 1304:579d37cb4395 |
---|---|
3781 pszFile parameter. | 3781 pszFile parameter. |
3782 | 3782 |
3783 But "cch" means "count of characters", not bytes. I'll assume the doc | 3783 But "cch" means "count of characters", not bytes. I'll assume the doc |
3784 writers messed up and the programmer was correct. Also, this approach | 3784 writers messed up and the programmer was correct. Also, this approach |
3785 is safe even if it's actually the other way around. */ | 3785 is safe even if it's actually the other way around. */ |
3786 #ifdef CYGWIN_HEADERS /* Another Cygwin prototype error */ | 3786 #if defined (CYGWIN_HEADERS) && !defined (W32API_2_2) |
3787 /* Another Cygwin prototype error, | |
3788 fixed in v2.2 of w32api */ | |
3787 XECOMCALL4 (psl, GetPath, (LPSTR) resolved, | 3789 XECOMCALL4 (psl, GetPath, (LPSTR) resolved, |
3788 PATH_MAX, &wfd, 0) | 3790 PATH_MAX, &wfd, 0) |
3789 #else | 3791 #else |
3790 XECOMCALL4 (psl, GetPath, resolved, | 3792 XECOMCALL4 (psl, GetPath, resolved, |
3791 PATH_MAX, &wfd, 0) | 3793 PATH_MAX, &wfd, 0) |