Added a few more stubs.

This commit is contained in:
Eric Pouech 2003-01-11 22:48:11 +00:00 committed by Alexandre Julliard
parent ce0557fe8e
commit e9005937ad
2 changed files with 18 additions and 2 deletions

View File

@ -3,5 +3,5 @@
@ stub DllRegisterServer
@ stub DllUnregisterServer
@ stdcall StiCreateInstance(ptr long ptr ptr) StiCreateInstance
@ stub StiCreateInstanceA
@ stub StiCreateInstanceW
@ stdcall StiCreateInstanceA(ptr long ptr ptr) StiCreateInstanceA
@ stdcall StiCreateInstanceW(ptr long ptr ptr) StiCreateInstanceW

View File

@ -26,3 +26,19 @@ HRESULT WINAPI StiCreateInstance( HINSTANCE a, DWORD b, LPVOID c, LPVOID d)
{
return STG_E_UNIMPLEMENTEDFUNCTION;
}
/******************************************************************************
* StiCreateInstanceA (STI.@)
*/
HRESULT WINAPI StiCreateInstanceA( HINSTANCE a, DWORD b, LPVOID c, LPVOID d)
{
return STG_E_UNIMPLEMENTEDFUNCTION;
}
/******************************************************************************
* StiCreateInstanceW (STI.@)
*/
HRESULT WINAPI StiCreateInstanceW( HINSTANCE a, DWORD b, LPVOID c, LPVOID d)
{
return STG_E_UNIMPLEMENTEDFUNCTION;
}