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
10148677
Commit
10148677
authored
Feb 21, 2015
by
André Hentschel
Committed by
Alexandre Julliard
Feb 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Declare debug channels only when needed (Clang).
parent
0898bd22
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
46 additions
and
46 deletions
+46
-46
attribute.c
dlls/msxml3/attribute.c
+2
-2
cdata.c
dlls/msxml3/cdata.c
+2
-2
comment.c
dlls/msxml3/comment.c
+2
-2
docfrag.c
dlls/msxml3/docfrag.c
+2
-2
doctype.c
dlls/msxml3/doctype.c
+2
-2
domdoc.c
dlls/msxml3/domdoc.c
+2
-2
domimpl.c
dlls/msxml3/domimpl.c
+2
-2
element.c
dlls/msxml3/element.c
+2
-2
entityref.c
dlls/msxml3/entityref.c
+2
-2
httprequest.c
dlls/msxml3/httprequest.c
+2
-2
main.c
dlls/msxml3/main.c
+2
-2
node.c
dlls/msxml3/node.c
+2
-2
nodelist.c
dlls/msxml3/nodelist.c
+2
-2
nodemap.c
dlls/msxml3/nodemap.c
+2
-2
pi.c
dlls/msxml3/pi.c
+2
-2
saxreader.c
dlls/msxml3/saxreader.c
+2
-2
schema.c
dlls/msxml3/schema.c
+2
-2
selection.c
dlls/msxml3/selection.c
+2
-2
text.c
dlls/msxml3/text.c
+2
-2
xdr.c
dlls/msxml3/xdr.c
+2
-2
xmldoc.c
dlls/msxml3/xmldoc.c
+2
-2
xmlelem.c
dlls/msxml3/xmlelem.c
+2
-2
xmlview.c
dlls/msxml3/xmlview.c
+2
-2
No files found.
dlls/msxml3/attribute.c
View file @
10148677
...
...
@@ -39,10 +39,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
static
const
xmlChar
xmlns
[]
=
"xmlns"
;
typedef
struct
_domattr
...
...
dlls/msxml3/cdata.c
View file @
10148677
...
...
@@ -38,10 +38,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
{
xmlnode
node
;
...
...
dlls/msxml3/comment.c
View file @
10148677
...
...
@@ -38,10 +38,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
_domcomment
{
xmlnode
node
;
...
...
dlls/msxml3/docfrag.c
View file @
10148677
...
...
@@ -38,10 +38,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
_domfrag
{
xmlnode
node
;
...
...
dlls/msxml3/doctype.c
View file @
10148677
...
...
@@ -39,10 +39,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
_domdoctype
{
xmlnode
node
;
...
...
dlls/msxml3/domdoc.c
View file @
10148677
...
...
@@ -52,10 +52,10 @@
#include "msxml_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
/* not defined in older versions */
#define XML_SAVE_FORMAT 1
#define XML_SAVE_NO_DECL 2
...
...
dlls/msxml3/domimpl.c
View file @
10148677
...
...
@@ -38,10 +38,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
_domimpl
{
DispatchEx
dispex
;
...
...
dlls/msxml3/element.c
View file @
10148677
...
...
@@ -39,10 +39,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
static
const
xmlChar
DT_prefix
[]
=
"dt"
;
static
const
xmlChar
DT_nsURI
[]
=
"urn:schemas-microsoft-com:datatypes"
;
...
...
dlls/msxml3/entityref.c
View file @
10148677
...
...
@@ -38,10 +38,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
_entityref
{
xmlnode
node
;
...
...
dlls/msxml3/httprequest.c
View file @
10148677
...
...
@@ -48,10 +48,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
static
const
WCHAR
colspaceW
[]
=
{
':'
,
' '
,
0
};
static
const
WCHAR
crlfW
[]
=
{
'\r'
,
'\n'
,
0
};
static
const
DWORD
safety_supported_options
=
...
...
dlls/msxml3/main.c
View file @
10148677
...
...
@@ -56,12 +56,12 @@
#include "msxml_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
HINSTANCE
MSXML_hInstance
=
NULL
;
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
void
wineXmlCallbackLog
(
char
const
*
caller
,
xmlErrorLevel
lvl
,
char
const
*
msg
,
va_list
ap
)
{
enum
__wine_debug_class
dbcl
;
...
...
dlls/msxml3/node.c
View file @
10148677
...
...
@@ -53,10 +53,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef SONAME_LIBXSLT
extern
void
*
libxslt_handle
;
# define MAKE_FUNCPTR(f) extern typeof(f) * p##f
...
...
dlls/msxml3/nodelist.c
View file @
10148677
...
...
@@ -48,10 +48,10 @@
* thus the child is inaccessible by an XPath query
*/
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
{
DispatchEx
dispex
;
...
...
dlls/msxml3/nodemap.c
View file @
10148677
...
...
@@ -40,10 +40,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
{
DispatchEx
dispex
;
...
...
dlls/msxml3/pi.c
View file @
10148677
...
...
@@ -38,10 +38,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
_dom_pi
{
xmlnode
node
;
...
...
dlls/msxml3/saxreader.c
View file @
10148677
...
...
@@ -45,10 +45,10 @@
#include "msxml_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
enum
{
FeatureUnknown
=
0
,
...
...
dlls/msxml3/schema.c
View file @
10148677
...
...
@@ -48,6 +48,8 @@
#include "msxml_private.h"
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
/* We use a chained hashtable, which can hold any number of schemas
...
...
@@ -58,8 +60,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(msxml);
/* This is just the number of buckets, should be prime */
#define DEFAULT_HASHTABLE_SIZE 17
#ifdef HAVE_LIBXML2
xmlDocPtr
XDR_to_XSD_doc
(
xmlDocPtr
xdr_doc
,
xmlChar
const
*
nsURI
);
static
const
xmlChar
XSD_schema
[]
=
"schema"
;
...
...
dlls/msxml3/selection.c
View file @
10148677
...
...
@@ -52,10 +52,10 @@
*
*/
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
int
registerNamespaces
(
xmlXPathContextPtr
ctxt
);
xmlChar
*
XSLPattern_to_XPath
(
xmlXPathContextPtr
ctxt
,
xmlChar
const
*
xslpat_str
);
...
...
dlls/msxml3/text.c
View file @
10148677
...
...
@@ -40,10 +40,10 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
_domtext
{
xmlnode
node
;
...
...
dlls/msxml3/xdr.c
View file @
10148677
...
...
@@ -28,14 +28,14 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
/* Both XDR and XSD are valid XML
* We just convert the doc tree, no need for a parser.
*/
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
static
const
xmlChar
DT_prefix
[]
=
"dt"
;
static
const
xmlChar
DT_href
[]
=
"urn:schemas-microsoft-com:datatypes"
;
static
const
xmlChar
XDR_href
[]
=
"urn:schemas-microsoft-com:xml-data"
;
...
...
dlls/msxml3/xmldoc.c
View file @
10148677
...
...
@@ -42,10 +42,10 @@
#include "msxml_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
/* FIXME: IXMLDocument needs to implement
* - IXMLError
* - IPersistMoniker
...
...
dlls/msxml3/xmlelem.c
View file @
10148677
...
...
@@ -39,10 +39,10 @@
#include "msxml_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
static
HRESULT
XMLElementCollection_create
(
xmlNodePtr
node
,
LPVOID
*
ppObj
);
/**********************************************************************
...
...
dlls/msxml3/xmlview.c
View file @
10148677
...
...
@@ -40,10 +40,10 @@
#include "msxml_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
typedef
struct
{
IPersistMoniker
IPersistMoniker_iface
;
...
...
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