msi: Improve the stub for MisGetMode(MSIRUNMODE_ADMIN).

This commit is contained in:
Hans Leidekker 2011-05-12 17:22:56 +02:00 committed by Alexandre Julliard
parent 1650367e16
commit b55cbe8d11

View file

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