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
2f4423e4
Commit
2f4423e4
authored
Apr 20, 2009
by
Christian Costa
Committed by
Alexandre Julliard
Apr 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xmllite: Add stubbed dll for xmllite.
parent
9cc12d28
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
76 additions
and
0 deletions
+76
-0
configure
configure
+9
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/xmllite/Makefile.in
+13
-0
xmllite.spec
dlls/xmllite/xmllite.spec
+6
-0
xmllite_main.c
dlls/xmllite/xmllite_main.c
+47
-0
No files found.
configure
View file @
2f4423e4
...
...
@@ -27683,6 +27683,14 @@ dlls/xinput9_1_0/Makefile: dlls/xinput9_1_0/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/xinput9_1_0/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/xmllite/Makefile"
test
"x
$enable_xmllite
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
xmllite"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
dlls/xmllite/Makefile: dlls/xmllite/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/xmllite/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
documentation/Makefile"
test
"x
$enable_documentation
"
!=
xno
&&
ALL_TOP_DIRS
=
"
$ALL_TOP_DIRS
\\
documentation"
...
...
@@ -29331,6 +29339,7 @@ do
"dlls/xinput1_3/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/xinput1_3/Makefile" ;;
"dlls/xinput1_3/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/xinput1_3/tests/Makefile" ;;
"dlls/xinput9_1_0/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/xinput9_1_0/Makefile" ;;
"dlls/xmllite/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/xmllite/Makefile" ;;
"documentation/Makefile") CONFIG_FILES="
$CONFIG_FILES
documentation/Makefile" ;;
"fonts/Makefile") CONFIG_FILES="
$CONFIG_FILES
fonts/Makefile" ;;
"include/Makefile") CONFIG_FILES="
$CONFIG_FILES
include/Makefile" ;;
...
...
configure.ac
View file @
2f4423e4
...
...
@@ -2289,6 +2289,7 @@ WINE_CONFIG_MAKEFILE([dlls/xinput1_2/Makefile],[dlls/Makedll.rules],[dlls],[ALL_
WINE_CONFIG_MAKEFILE([dlls/xinput1_3/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/xinput1_3/tests/Makefile],[dlls/Maketest.rules],[dlls],[ALL_TEST_DIRS],[enable_tests])
WINE_CONFIG_MAKEFILE([dlls/xinput9_1_0/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/xmllite/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([documentation/Makefile],[Make.rules],[],[ALL_TOP_DIRS])
WINE_CONFIG_MAKEFILE([fonts/Makefile],[Make.rules],[],[ALL_TOP_DIRS])
WINE_CONFIG_MAKEFILE([include/Makefile],[Make.rules],[],[ALL_TOP_DIRS])
...
...
dlls/xmllite/Makefile.in
0 → 100644
View file @
2f4423e4
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
xmllite.dll
IMPORTS
=
kernel32
C_SRCS
=
\
xmllite_main.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/xmllite/xmllite.spec
0 → 100644
View file @
2f4423e4
@ stub CreateXmlReader
@ stub CreateXmlReaderInputWithEncodingCodePage
@ stub CreateXmlReaderInputWithEncodingName
@ stub CreateXmlWriter
@ stub CreateXmlWriterOutputWithEncodingCodePage
@ stub CreateXmlWriterOutputWithEncodingName
dlls/xmllite/xmllite_main.c
0 → 100644
View file @
2f4423e4
/*
* XML parsing library
*
* Copyright 2009 Christian Costa
*
* 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
(
xmllite
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(0x%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
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
;
}
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