sxs: Implement a stub CreateAssemblyCache to make Publish or Perish install.
This commit is contained in:
parent
0b4499cdcd
commit
16a0528174
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
@ stub CreateAssemblyCache
|
||||
@ stdcall CreateAssemblyCache(long long)
|
||||
@ stub CreateAssemblyNameObject
|
||||
|
|
Loading…
Reference in New Issue