Changeset 1673 for trunk/dll/errutil.c


Ignore:
Timestamp:
Dec 30, 2012, 7:51:01 PM (13 years ago)
Author:
Gregg Young
Message:

Update to Doxygen comment style Ticket 55. Also some minor code cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/errutil.c

    r1558 r1673  
    216216                           PCSZ pszFmt, va_list pva)
    217217{
    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
    222220  PSZ psz;
    223221  HAB hab;
     
    256254    if (!hwndOwner)
    257255      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?
    261257    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
    265259    psz = pszBuf + strlen(pszBuf);
    266260    sprintf(psz, " #0x%04x \"", ERRORIDERROR(pErrInfoBlk->idError));
Note: See TracChangeset for help on using the changeset viewer.