Changeset 1673 for trunk/dll/errutil.c
- Timestamp:
- Dec 30, 2012, 7:51:01 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/errutil.c
r1558 r1673 216 216 PCSZ pszFmt, va_list pva) 217 217 { 218 PERRINFO pErrInfoBlk; /* Pointer to ERRINFO structure filled 219 by WinGetErrorInfo */ 220 PSZ pszOffset; /* Pointer to current error message returned 221 by WinGetErrorInfo */ 218 PERRINFO pErrInfoBlk; // Pointer to ERRINFO structure filled by WinGetErrorInfo 219 PSZ pszOffset; // Pointer to current error message returned by WinGetErrorInfo 222 220 PSZ psz; 223 221 HAB hab; … … 256 254 if (!hwndOwner) 257 255 hwndOwner = HWND_DESKTOP; 258 /* Find message offset in array of message offsets 259 Assume 1 message - fixme? 260 */ 256 // Find message offset in array of message offsets Assume 1 message - fixme? 261 257 pszOffset = ((PSZ) pErrInfoBlk) + pErrInfoBlk->offaoffszMsg; 262 /* Address error message in array of messages and 263 append error message to source code linenumber 264 */ 258 // Address error message in array of messages and append error message to source code linenumber 265 259 psz = pszBuf + strlen(pszBuf); 266 260 sprintf(psz, " #0x%04x \"", ERRORIDERROR(pErrInfoBlk->idError));
Note:
See TracChangeset
for help on using the changeset viewer.