xolehlp: Add some stubs.

This commit is contained in:
Daniel Jelinski 2012-11-03 23:43:36 +01:00 committed by Alexandre Julliard
parent 1ce71ab7d8
commit da87b102e0
2 changed files with 27 additions and 3 deletions

View file

@ -39,3 +39,27 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
} }
return TRUE; return TRUE;
} }
HRESULT WINAPI DtcGetTransactionManager(char *host, char *tm_name, REFIID riid,
DWORD dwReserved1, WORD wcbReserved2, void *pvReserved2, void **ppv)
{
FIXME("(%s, %s, %s, %d, %d, %p, %p): stub\n", debugstr_a(host), debugstr_a(tm_name),
debugstr_guid(riid), dwReserved1, wcbReserved2, pvReserved2, ppv);
return E_NOTIMPL;
}
HRESULT WINAPI DtcGetTransactionManagerExA(CHAR *host, CHAR *tm_name, REFIID riid,
DWORD options, void *config, void **ppv)
{
FIXME("(%s, %s, %s, %d, %p, %p): stub\n", debugstr_a(host), debugstr_a(tm_name),
debugstr_guid(riid), options, config, ppv);
return E_NOTIMPL;
}
HRESULT WINAPI DtcGetTransactionManagerExW(WCHAR *host, WCHAR *tm_name, REFIID riid,
DWORD options, void *config, void **ppv)
{
FIXME("(%s, %s, %s, %d, %p, %p): stub\n", debugstr_w(host), debugstr_w(tm_name),
debugstr_guid(riid), options, config, ppv);
return E_NOTIMPL;
}

View file

@ -1,6 +1,6 @@
@ stub GetDtcLocaleResourceHandle @ stub GetDtcLocaleResourceHandle
@ stub DtcGetTransactionManager @ stdcall DtcGetTransactionManager(str str ptr long long ptr ptr)
@ stub DtcGetTransactionManagerEx @ stub DtcGetTransactionManagerEx
@ stub DtcGetTransactionManagerC @ stub DtcGetTransactionManagerC
@ stub DtcGetTransactionManagerExA @ stdcall DtcGetTransactionManagerExA(str str ptr long ptr ptr)
@ stub DtcGetTransactionManagerExW @ stdcall DtcGetTransactionManagerExW(wstr wstr ptr long ptr ptr)