Commit 6ec73069 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Improve the stub for MsiGetMode(MSIRUNMODE_ADVERTISE).

parent f644601f
......@@ -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:
......
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