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
8f87459b
Commit
8f87459b
authored
Sep 26, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ktmw32: Add stub dll.
parent
d87a7613
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
95 additions
and
0 deletions
+95
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/ktmw32/Makefile.in
+6
-0
ktmw32.spec
dlls/ktmw32/ktmw32.spec
+44
-0
ktmw32_main.c
dlls/ktmw32/ktmw32_main.c
+43
-0
No files found.
configure
View file @
8f87459b
...
...
@@ -14685,6 +14685,7 @@ wine_fn_config_dll kernel32 enable_kernel32 kernel32
wine_fn_config_test dlls/kernel32/tests kernel32_test
wine_fn_config_dll keyboard.drv16 enable_win16
wine_fn_config_dll krnl386.exe16 enable_win16 kernel
wine_fn_config_dll ktmw32 enable_ktmw32
wine_fn_config_dll loadperf enable_loadperf loadperf
wine_fn_config_dll localspl enable_localspl
wine_fn_config_test dlls/localspl/tests localspl_test
...
...
configure.ac
View file @
8f87459b
...
...
@@ -2463,6 +2463,7 @@ WINE_CONFIG_DLL(kernel32,,[kernel32])
WINE_CONFIG_TEST(dlls/kernel32/tests)
WINE_CONFIG_DLL(keyboard.drv16,enable_win16)
WINE_CONFIG_DLL(krnl386.exe16,enable_win16,[kernel])
WINE_CONFIG_DLL(ktmw32)
WINE_CONFIG_DLL(loadperf,,[loadperf])
WINE_CONFIG_DLL(localspl)
WINE_CONFIG_TEST(dlls/localspl/tests)
...
...
dlls/ktmw32/Makefile.in
0 → 100644
View file @
8f87459b
MODULE
=
ktmw32.dll
C_SRCS
=
\
ktmw32_main.c
@MAKE_DLL_RULES@
dlls/ktmw32/ktmw32.spec
0 → 100644
View file @
8f87459b
@ stub CommitComplete
@ stub CommitEnlistment
@ stub CommitTransaction
@ stub CommitTransactionAsync
@ stub CreateEnlistment
@ stub CreateResourceManager
@ stub CreateTransaction
@ stub CreateTransactionManager
@ stub GetCurrentClockTransactionManager
@ stub GetEnlistmentId
@ stub GetEnlistmentRecoveryInformation
@ stub GetNotificationResourceManager
@ stub GetNotificationResourceManagerAsync
@ stub GetTransactionId
@ stub GetTransactionInformation
@ stub GetTransactionManagerId
@ stub OpenEnlistment
@ stub OpenResourceManager
@ stub OpenTransaction
@ stub OpenTransactionManager
@ stub OpenTransactionManagerById
@ stub PrePrepareComplete
@ stub PrePrepareEnlistment
@ stub PrepareComplete
@ stub PrepareEnlistment
@ stub PrivCreateTransaction
@ stub PrivIsLogWritableTransactionManager
@ stub PrivPropagationComplete
@ stub PrivPropagationFailed
@ stub PrivRegisterProtocolAddressInformation
@ stub ReadOnlyEnlistment
@ stub RecoverEnlistment
@ stub RecoverResourceManager
@ stub RecoverTransactionManager
@ stub RenameTransactionManager
@ stub RollbackComplete
@ stub RollbackEnlistment
@ stub RollbackTransaction
@ stub RollbackTransactionAsync
@ stub RollforwardTransactionManager
@ stub SetEnlistmentRecoveryInformation
@ stub SetResourceManagerCompletionPort
@ stub SetTransactionInformation
@ stub SinglePhaseReject
dlls/ktmw32/ktmw32_main.c
0 → 100644
View file @
8f87459b
/*
* Copyright 2010 Vincent Povirk for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ktm
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
case
DLL_PROCESS_DETACH
:
break
;
}
return
TRUE
;
}
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