Changeset 258 for trunk/dll/error.c
- Timestamp:
- Aug 16, 2005, 5:37:34 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/error.c
r182 r258 15 15 24 May 05 SHL Rework Win_Error args and clean up logic 16 16 27 May 05 SHL Rework to use common showMsg 17 14 Aug 05 SHL showMsg: suppress write to stdout if not error message 17 18 18 19 ***********************************************************************/ … … 190 191 static APIRET showMsg(ULONG mb_type, HWND hwnd, CHAR *pszTitle, CHAR *pszMsg) 191 192 { 192 fputs(pszMsg, stderr); 193 fputc('\n', stderr); 194 fflush(stderr); 193 194 195 if ((mb_type & (MB_YESNO | MB_YESNOCANCEL)) == 0) 196 { 197 fputs(pszMsg, stderr); 198 fputc('\n', stderr); 199 fflush(stderr); 200 } 195 201 196 202 if (!hwnd)
Note:
See TracChangeset
for help on using the changeset viewer.