mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
xolehlp: Add some stubs.
This commit is contained in:
parent
1ce71ab7d8
commit
da87b102e0
2 changed files with 27 additions and 3 deletions
|
@ -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;
|
||||||
|
}
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue