Commit f6503a8b authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

cabarc: Handle fdintNEXT_CABINET notification to support multi-cab archive.

parent b305f111
......@@ -454,6 +454,10 @@ static INT_PTR CDECL extract_notify( FDINOTIFICATIONTYPE fdint, PFDINOTIFICATION
CloseHandle( (HANDLE)pfdin->hf );
return 0;
case fdintNEXT_CABINET:
WINE_TRACE("Next cab: status %u, path '%s', file '%s'\n", pfdin->fdie, pfdin->psz3, pfdin->psz1);
return pfdin->fdie == FDIERROR_NONE ? 0 : -1;
default:
WINE_FIXME( "Unexpected notification type %d.\n", fdint );
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment