Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e3df9043
Commit
e3df9043
authored
Nov 16, 2012
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Nov 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ktmw32: Add a stub for CreateTransaction.
parent
1a6e9d4a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
ktmw32.spec
dlls/ktmw32/ktmw32.spec
+1
-1
ktmw32_main.c
dlls/ktmw32/ktmw32_main.c
+16
-0
No files found.
dlls/ktmw32/ktmw32.spec
View file @
e3df9043
...
...
@@ -4,7 +4,7 @@
@ stub CommitTransactionAsync
@ stub CreateEnlistment
@ stub CreateResourceManager
@ st
ub CreateTransaction
@ st
dcall CreateTransaction(ptr ptr long long long long wstr)
@ stub CreateTransactionManager
@ stub GetCurrentClockTransactionManager
@ stub GetEnlistmentId
...
...
dlls/ktmw32/ktmw32_main.c
View file @
e3df9043
...
...
@@ -23,6 +23,9 @@
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ktmw32
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
...
...
@@ -39,3 +42,16 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
/***********************************************************************
* CreateTransaction (ktmw32.@)
*/
HANDLE
WINAPI
CreateTransaction
(
LPSECURITY_ATTRIBUTES
pattr
,
LPGUID
pguid
,
DWORD
options
,
DWORD
level
,
DWORD
flags
,
DWORD
timeout
,
LPWSTR
description
)
{
FIXME
(
"(%p %p 0x%x 0x%x 0x%x, %u, %s): stub
\n
"
,
pattr
,
pguid
,
options
,
level
,
flags
,
timeout
,
debugstr_w
(
description
));
return
(
HANDLE
)
1
;
}
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