Commit b55cbe8d authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Improve the stub for MisGetMode(MSIRUNMODE_ADMIN).

parent 1650367e
......@@ -724,6 +724,11 @@ BOOL WINAPI MsiGetMode(MSIHANDLE hInstall, MSIRUNMODE iRunMode)
switch (iRunMode)
{
case MSIRUNMODE_ADMIN:
FIXME("no support for administrative installs\n");
r = FALSE;
break;
case MSIRUNMODE_WINDOWS9X:
if (GetVersion() & 0x80000000)
r = TRUE;
......
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