Changeset 1877 for trunk/dll/wrappers.c


Ignore:
Timestamp:
Oct 11, 2015, 11:43:27 PM (10 years ago)
Author:
Gregg Young
Message:

Remove debug code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/wrappers.c

    r1860 r1877  
    258258  rc = DosAllocSharedMem(ppb, pszName, cb,
    259259                         PAG_COMMIT | OBJ_GIVEABLE | PAG_READ | PAG_WRITE | OBJ_ANY);
    260   //DbgMsg(pszSrcFile, __LINE__, "ppb %p", *ppb);
    261260  if (rc)
    262261    rc = DosAllocSharedMem(ppb, pszName, cb, PAG_COMMIT | OBJ_GIVEABLE | PAG_READ | PAG_WRITE);
     
    281280
    282281  rc = DosAllocMem(ppb, cb, PAG_COMMIT | PAG_READ | PAG_WRITE | OBJ_ANY);
    283   //DbgMsg(pszSrcFile, uiLineNumber, "ppb %p %x", *ppb, rc);
    284282  if (rc)
    285283    rc = DosAllocMem(ppb, cb, PAG_COMMIT | PAG_READ | PAG_WRITE);
    286284  if (rc)
    287285    Runtime_Error(pszSrcFile, uiLineNumber, GetPString(IDS_OUTOFMEMORY));
    288   //DbgMsg(pszSrcFile, uiLineNumber, "ppb %p", *ppb);
    289286  return rc;
    290287}
Note: See TracChangeset for help on using the changeset viewer.