msi: Improve the stub for MsiGetMode(MSIRUNMODE_ADVERTISE).

This commit is contained in:
Hans Leidekker 2011-05-24 10:50:12 +02:00 committed by Alexandre Julliard
parent f644601fc5
commit 6ec7306948
1 changed files with 4 additions and 1 deletions

View File

@ -732,7 +732,10 @@ BOOL WINAPI MsiGetMode(MSIHANDLE hInstall, MSIRUNMODE iRunMode)
{
case MSIRUNMODE_ADMIN:
FIXME("no support for administrative installs\n");
r = FALSE;
break;
case MSIRUNMODE_ADVERTISE:
FIXME("no support for advertised installs\n");
break;
case MSIRUNMODE_WINDOWS9X: