Stub CommandLineFromMsiDescriptor to prevent a crash in Accelerys
Materials Studio.
This commit is contained in:
parent
0ea344e53a
commit
4161a8b474
|
@ -171,3 +171,10 @@ BOOL WINAPI InitiateSystemShutdownExW( LPWSTR lpMachineName, LPWSTR lpMessage,
|
||||||
bRebootAfterShutdown, dwReason);
|
bRebootAfterShutdown, dwReason);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DWORD WINAPI CommandLineFromMsiDescriptor(WCHAR *Descriptor, WCHAR *CommandLine,
|
||||||
|
DWORD *CommandLineLength)
|
||||||
|
{
|
||||||
|
FIXME("stub (%s)\n", debugstr_w(Descriptor));
|
||||||
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
@ stdcall ClearEventLogW (long wstr)
|
@ stdcall ClearEventLogW (long wstr)
|
||||||
@ stdcall CloseEventLog (long)
|
@ stdcall CloseEventLog (long)
|
||||||
@ stdcall CloseServiceHandle(long)
|
@ stdcall CloseServiceHandle(long)
|
||||||
@ stub CommandLineFromMsiDescriptor
|
@ stdcall CommandLineFromMsiDescriptor(wstr wstr ptr)
|
||||||
@ stdcall ControlService(long long ptr)
|
@ stdcall ControlService(long long ptr)
|
||||||
@ stub ConvertSidToStringSidA #(ptr str) ConvertSidToStringSidA
|
@ stub ConvertSidToStringSidA #(ptr str) ConvertSidToStringSidA
|
||||||
@ stub ConvertSidToStringSidW #(ptr wstr) ConvertSidToStringSidW
|
@ stub ConvertSidToStringSidW #(ptr wstr) ConvertSidToStringSidW
|
||||||
|
|
Loading…
Reference in New Issue