Kai Blin : sxs: Implement a stub CreateAssemblyCache to make Publish or Perish install.

Alexandre Julliard julliard at winehq.org
Tue Apr 21 11:45:47 CDT 2009


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

Author: Kai Blin <kai.blin at gmail.com>
Date:   Sun Apr 19 23:55:14 2009 +0200

sxs: Implement a stub CreateAssemblyCache to make Publish or Perish install.

---

 dlls/sxs/sxs.c    |    8 ++++++++
 dlls/sxs/sxs.spec |    2 +-
 2 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/dlls/sxs/sxs.c b/dlls/sxs/sxs.c
index 06e6672..76c2f85 100644
--- a/dlls/sxs/sxs.c
+++ b/dlls/sxs/sxs.c
@@ -22,7 +22,9 @@
 
 #include "windef.h"
 #include "winbase.h"
+#include "wine/debug.h"
 
+WINE_DEFAULT_DEBUG_CHANNEL(sxs);
 
 /***********************************************************************
  *             DllMain   (SXS.@)
@@ -40,3 +42,9 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
     }
     return TRUE;
 }
+
+HRESULT WINAPI CreateAssemblyCache(DWORD unimplemented, DWORD dwReserved)
+{
+    FIXME("%u %u stub\n", unimplemented, dwReserved);
+    return E_NOTIMPL;
+}
diff --git a/dlls/sxs/sxs.spec b/dlls/sxs/sxs.spec
index 012d06b..cd32a2e 100644
--- a/dlls/sxs/sxs.spec
+++ b/dlls/sxs/sxs.spec
@@ -1,2 +1,2 @@
-@ stub CreateAssemblyCache
+@ stdcall CreateAssemblyCache(long long)
 @ stub CreateAssemblyNameObject




More information about the wine-cvs mailing list