Hans Leidekker : msi: Improve the stub for MisGetMode(MSIRUNMODE_ADMIN).

Alexandre Julliard julliard at winehq.org
Thu May 12 13:57:53 CDT 2011


Module: wine
Branch: master
Commit: b55cbe8d113f0f9ac436772841e262f9a4448cf2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b55cbe8d113f0f9ac436772841e262f9a4448cf2

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu May 12 17:22:56 2011 +0200

msi: Improve the stub for MisGetMode(MSIRUNMODE_ADMIN).

---

 dlls/msi/install.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/dlls/msi/install.c b/dlls/msi/install.c
index 686fc58..3559792 100644
--- a/dlls/msi/install.c
+++ b/dlls/msi/install.c
@@ -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;




More information about the wine-cvs mailing list