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
4f1d040e
Commit
4f1d040e
authored
Feb 03, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub msxml4.dll.
parent
9de35af8
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
67 additions
and
0 deletions
+67
-0
configure
configure
+9
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/msxml4/Makefile.in
+14
-0
main.c
dlls/msxml4/main.c
+39
-0
msxml4.spec
dlls/msxml4/msxml4.spec
+4
-0
No files found.
configure
View file @
4f1d040e
...
...
@@ -16222,6 +16222,14 @@ ALL_MAKEFILE_DEPENDS="$ALL_MAKEFILE_DEPENDS
dlls/msxml3/tests/Makefile: dlls/msxml3/tests/Makefile.in dlls/Maketest.rules config.status"
ac_config_files
=
"
$ac_config_files
dlls/msxml3/tests/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/msxml4/Makefile"
test
"x
$enable_msxml4
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
msxml4"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
dlls/msxml4/Makefile: dlls/msxml4/Makefile.in dlls/Makedll.rules config.status"
ac_config_files
=
"
$ac_config_files
dlls/msxml4/Makefile"
ALL_IMPORT_LIBS
=
"
$ALL_IMPORT_LIBS
\\
nddeapi/libnddeapi.
$IMPLIBEXT
"
ALL_IMPORTLIB_RULES
=
"
$ALL_IMPORTLIB_RULES
...
...
@@ -19896,6 +19904,7 @@ do
"dlls/mswsock/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/mswsock/Makefile" ;;
"dlls/msxml3/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msxml3/Makefile" ;;
"dlls/msxml3/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msxml3/tests/Makefile" ;;
"dlls/msxml4/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/msxml4/Makefile" ;;
"dlls/nddeapi/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/nddeapi/Makefile" ;;
"dlls/netapi32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/netapi32/Makefile" ;;
"dlls/netapi32/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/netapi32/tests/Makefile" ;;
...
...
configure.ac
View file @
4f1d040e
...
...
@@ -2391,6 +2391,7 @@ WINE_CONFIG_DLL(msvideo.dll16,enable_win16)
WINE_CONFIG_DLL(mswsock,,[mswsock])
WINE_CONFIG_DLL(msxml3)
WINE_CONFIG_TEST(dlls/msxml3/tests)
WINE_CONFIG_DLL(msxml4)
WINE_CONFIG_DLL(nddeapi,,[nddeapi])
WINE_CONFIG_DLL(netapi32,,[netapi32])
WINE_CONFIG_TEST(dlls/netapi32/tests)
...
...
dlls/msxml4/Makefile.in
0 → 100644
View file @
4f1d040e
EXTRADEFS
=
-DCOM_NO_WINDOWS_H
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
msxml4.dll
IMPORTS
=
kernel32
C_SRCS
=
\
main.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/msxml4/main.c
0 → 100644
View file @
4f1d040e
/*
* MSXML4 entry point
*
* Copyright 2010 Nikolay Sivov
*
* 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 <stdarg.h>
#include "windef.h"
#include "winbase.h"
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
{
return
S_FALSE
;
}
BOOL
WINAPI
DllMain
(
HINSTANCE
instance
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
{
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
instance
);
break
;
}
return
TRUE
;
}
dlls/msxml4/msxml4.spec
0 → 100644
View file @
4f1d040e
@ stdcall -private DllCanUnloadNow()
@ stub -private DllGetClassObject
@ stub -private DllRegisterServer
@ stub -private DllUnregisterServer
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