Changeset 169
- Timestamp:
- Mar 27, 2024, 10:38:24 PM (17 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/c/c_image/cwimage.c
r141 r169 1258 1258 NOT_IMPLEMENTED 1259 1259 1260 return (MMImage_parent_WPImageFile_wpQueryBitmapData(somSelf, 1261 pulSize)); 1260 return (MMImage_parent_WPImageFile_wpQueryBitmapData(somSelf, pulSize)); 1262 1261 } 1263 1262 … … 1498 1497 for ( index = 0; index <lNumIOProcs; index++ ) 1499 1498 { 1500 mmioGetFormatName(pmmFormatInfoArray, szBuffer, &lBytesRead, 0L, 0L); 1501 1499 ulReturnCode = mmioGetFormatName(pmmFormatInfoArray, szBuffer, &lBytesRead, 0L, 0L); 1500 if(ulReturnCode) 1501 { 1502 SysWriteToTrapLog("IO-Proc 2: %s %u\n\n", szBuffer, ulReturnCode); 1503 continue; 1504 } 1502 1505 /* Insert NULL string terminator */ 1503 1506 *( szBuffer + lBytesRead ) = (CHAR)NULL; … … 1636 1639 strcat(chrPtr,"\" \""); 1637 1640 chrPtr=strrchr(chrPtr, 0); 1638 mmioGetFormatName(&g_pmmFormatInfoArray[ulMenuId-ID_ITEM_FIRSTCONVERT], chrPtr,(LONG*) &ulSize, 0L, 0L); 1641 ulRc = mmioGetFormatName(&g_pmmFormatInfoArray[ulMenuId-ID_ITEM_FIRSTCONVERT], chrPtr,(LONG*) &ulSize, 0L, 0L); 1642 if(ulRc) 1643 { 1644 SysWriteToTrapLog("cwimg_wpMenuItemSelected: %s %u\n\n", chrPtr, ulRc); 1645 } 1639 1646 *( chrPtr + ulSize ) = (CHAR)NULL; 1640 1647 strcat(chrPtr,"\""); … … 2310 2317 for ( index = 0; index <lNumIOProcs; index++ ) 2311 2318 { 2312 mmioGetFormatName(pmmFormatInfoArray, szBuffer, &lBytesRead, 0L, 0L); 2313 2319 ulReturnCode = mmioGetFormatName(pmmFormatInfoArray, szBuffer, &lBytesRead, 0L, 0L); 2320 if(ulReturnCode) 2321 { 2322 SysWriteToTrapLog("checkImageIOProc: %s %u\n\n", szBuffer, ulReturnCode); 2323 continue; 2324 } 2325 SysWriteToTrapLog("IO-Proc 2: %s %u\n\n", szBuffer, lBytesRead); 2314 2326 /* Insert NULL string terminator */ 2315 2327 *( szBuffer + lBytesRead ) = (CHAR)NULL; -
trunk/stream_ioproc/source/streamproc.c
r4 r169 191 191 pmmioinfo = (PMMIOINFO) pmmioStr; 192 192 193 DosBeep(5000, 30);193 //DosBeep(5000, 30); 194 194 #ifdef DEBUG 195 195 writeLog("MSG: %d %x\n", usMsg,usMsg);
Note:
See TracChangeset
for help on using the changeset viewer.