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
44a808fb
Commit
44a808fb
authored
Oct 14, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msimtf: Added msimtf.dll.
parent
db0b392d
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
107 additions
and
0 deletions
+107
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+1
-0
Makefile.in
dlls/msimtf/Makefile.in
+12
-0
main.c
dlls/msimtf/main.c
+82
-0
msimtf.spec
dlls/msimtf/msimtf.spec
+6
-0
No files found.
Makefile.in
View file @
44a808fb
...
...
@@ -298,6 +298,7 @@ ALL_MAKEFILES = \
dlls/msi/Makefile
\
dlls/msi/tests/Makefile
\
dlls/msimg32/Makefile
\
dlls/msimtf/Makefile
\
dlls/msisys.ocx/Makefile
\
dlls/msnet32/Makefile
\
dlls/msrle32/Makefile
\
...
...
@@ -669,6 +670,7 @@ dlls/mshtml/tests/Makefile: dlls/mshtml/tests/Makefile.in dlls/Maketest.rules
dlls/msi/Makefile
:
dlls/msi/Makefile.in dlls/Makedll.rules
dlls/msi/tests/Makefile
:
dlls/msi/tests/Makefile.in dlls/Maketest.rules
dlls/msimg32/Makefile
:
dlls/msimg32/Makefile.in dlls/Makedll.rules
dlls/msimtf/Makefile
:
dlls/msimtf/Makefile.in dlls/Makedll.rules
dlls/msisys.ocx/Makefile
:
dlls/msisys.ocx/Makefile.in dlls/Makedll.rules
dlls/msnet32/Makefile
:
dlls/msnet32/Makefile.in dlls/Makedll.rules
dlls/msrle32/Makefile
:
dlls/msrle32/Makefile.in dlls/Makedll.rules
...
...
configure
View file @
44a808fb
...
...
@@ -20552,6 +20552,8 @@ ac_config_files="$ac_config_files dlls/msi/tests/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/msimg32/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/msimtf/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/msisys.ocx/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/msnet32/Makefile"
...
...
@@ -21690,6 +21692,7 @@ do
"dlls/msi/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msi/Makefile" ;;
"dlls/msi/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msi/tests/Makefile" ;;
"dlls/msimg32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msimg32/Makefile" ;;
"dlls/msimtf/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msimtf/Makefile" ;;
"dlls/msisys.ocx/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msisys.ocx/Makefile" ;;
"dlls/msnet32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msnet32/Makefile" ;;
"dlls/msrle32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msrle32/Makefile" ;;
...
...
configure.ac
View file @
44a808fb
...
...
@@ -1696,6 +1696,7 @@ AC_CONFIG_FILES([dlls/mshtml/tests/Makefile])
AC_CONFIG_FILES([dlls/msi/Makefile])
AC_CONFIG_FILES([dlls/msi/tests/Makefile])
AC_CONFIG_FILES([dlls/msimg32/Makefile])
AC_CONFIG_FILES([dlls/msimtf/Makefile])
AC_CONFIG_FILES([dlls/msisys.ocx/Makefile])
AC_CONFIG_FILES([dlls/msnet32/Makefile])
AC_CONFIG_FILES([dlls/msrle32/Makefile])
...
...
dlls/Makefile.in
View file @
44a808fb
...
...
@@ -121,6 +121,7 @@ BASEDIRS = \
mshtml.tlb
\
msi
\
msimg32
\
msimtf
\
msisys.ocx
\
msnet32
\
msrle32
\
...
...
dlls/msimtf/Makefile.in
0 → 100644
View file @
44a808fb
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
msimtf.dll
IMPORTS
=
kernel32
C_SRCS
=
main.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/msimtf/main.c
0 → 100644
View file @
44a808fb
/*
* Copyright 2007 Jacek Caban 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
(
msimtf
);
/******************************************************************
* DllMain (msimtf.@)
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstDLL
,
DWORD
fdwReason
,
LPVOID
lpv
)
{
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hInstDLL
);
break
;
case
DLL_PROCESS_DETACH
:
break
;
}
return
TRUE
;
}
/******************************************************************
* DllGetClassObject (msimtf.@)
*/
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"(%s %s %p)
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
return
CLASS_E_CLASSNOTAVAILABLE
;
}
/******************************************************************
* DllCanUnloadNow (msimtf.@)
*/
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
{
FIXME
(
"()
\n
"
);
return
S_FALSE
;
}
/***********************************************************************
* DllRegisterServer (msimtf.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXME
(
"()
\n
"
);
return
S_OK
;
}
/***********************************************************************
* DllUnregisterServer (msimtf.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
FIXME
(
"()
\n
"
);
return
S_OK
;
}
dlls/msimtf/msimtf.spec
0 → 100644
View file @
44a808fb
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
@ stub MsimtfIsGuidMapEnable
@ stub MsimtfIsWindowFiltered
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