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

This commit is contained in:
Christian Costa 2012-12-03 09:18:40 +01:00 committed by Alexandre Julliard
parent b305f11118
commit f6503a8b11
1 changed files with 4 additions and 0 deletions

View File

@ -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;