From e9005937adcf7be33cff76acb36d16b8627a4a03 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Sat, 11 Jan 2003 22:48:11 +0000 Subject: [PATCH] Added a few more stubs. --- dlls/sti/sti.spec | 4 ++-- dlls/sti/sti_main.c | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/dlls/sti/sti.spec b/dlls/sti/sti.spec index a5e0bc1e772..a5a1a3d804d 100644 --- a/dlls/sti/sti.spec +++ b/dlls/sti/sti.spec @@ -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 diff --git a/dlls/sti/sti_main.c b/dlls/sti/sti_main.c index 4eb965ccf32..8486ee52ee4 100644 --- a/dlls/sti/sti_main.c +++ b/dlls/sti/sti_main.c @@ -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; +} -- 2.11.4.GIT