Changeset 1398 for trunk/dll/errutil.c
- Timestamp:
- Feb 21, 2009, 6:43:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/errutil.c
r1395 r1398 49 49 #include "fm3str.h" 50 50 #include "notebook.h" // fErrorBeepOff 51 #include "init.h" // Data declares 51 52 52 53 #pragma data_seg(GLOBAL2) … … 295 296 296 297 //== Runtime_Error: report runtime library error using passed message string === 298 //If pszFmt is NULL a No Data error message is returned GKY 20 Feb 09 (Replaces Runtime_Error2) 297 299 298 300 VOID Runtime_Error(PCSZ pszSrcFile, UINT uSrcLineNo, PCSZ pszFmt, ...) … … 302 304 303 305 // Format caller's message 306 if (!pszFmt) 307 pszFmt = PCSZ_NODATA; 304 308 va_start(va, pszFmt); 305 309 szMsg[sizeof(szMsg) - 1] = 0; … … 326 330 //== Runtime_Error2: report runtime library error using passed message id === 327 331 328 VOID Runtime_Error2(PCSZ pszSrcFile, UINT uSrcLineNo, UINT idMsg)332 /*VOID Runtime_Error2(PCSZ pszSrcFile, UINT uSrcLineNo, UINT idMsg) 329 333 { 330 334 Runtime_Error(pszSrcFile, uSrcLineNo, GetPString(idMsg)); … … 332 336 } // Runtime_Error2 333 337 334 // fixme to be rename to Misc_Error 338 // fixme to be rename to Misc_Error */ 335 339 336 340 //=== saymsg: report misc error using passed message ===
Note:
See TracChangeset
for help on using the changeset viewer.