Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
da87b102
Commit
da87b102
authored
Nov 03, 2012
by
Daniel Jelinski
Committed by
Alexandre Julliard
Nov 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xolehlp: Add some stubs.
parent
1ce71ab7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
3 deletions
+27
-3
xolehlp.c
dlls/xolehlp/xolehlp.c
+24
-0
xolehlp.spec
dlls/xolehlp/xolehlp.spec
+3
-3
No files found.
dlls/xolehlp/xolehlp.c
View file @
da87b102
...
...
@@ -39,3 +39,27 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
}
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
;
}
dlls/xolehlp/xolehlp.spec
View file @
da87b102
@ stub GetDtcLocaleResourceHandle
@ st
ub DtcGetTransactionManager
@ st
dcall DtcGetTransactionManager(str str ptr long long ptr ptr)
@ stub DtcGetTransactionManagerEx
@ stub DtcGetTransactionManagerC
@ st
ub DtcGetTransactionManagerExA
@ st
ub DtcGetTransactionManagerExW
@ st
dcall DtcGetTransactionManagerExA(str str ptr long ptr ptr)
@ st
dcall DtcGetTransactionManagerExW(wstr wstr ptr long ptr ptr)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment