Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
b1480630
Commit
b1480630
authored
13 years ago
by
Nikolay Sivov
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msxml3: Replace macro with another enum entry.
parent
ca48dac8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/msxml3/element.c
+2
-0
2 additions, 0 deletions
dlls/msxml3/element.c
dlls/msxml3/msxml_private.h
+2
-2
2 additions, 2 deletions
dlls/msxml3/msxml_private.h
dlls/msxml3/schema.c
+2
-2
2 additions, 2 deletions
dlls/msxml3/schema.c
with
6 additions
and
4 deletions
dlls/msxml3/element.c
+
2
−
0
View file @
b1480630
...
...
@@ -644,6 +644,8 @@ static inline HRESULT variant_from_dt(XDR_DT dt, xmlChar* str, VARIANT* v)
return
E_OUTOFMEMORY
;
handled
=
TRUE
;
break
;
default:
WARN
(
"unknown type %d
\n
"
,
dt
);
}
if
(
!
handled
)
...
...
This diff is collapsed.
Click to expand it.
dlls/msxml3/msxml_private.h
+
2
−
2
View file @
b1480630
...
...
@@ -124,9 +124,9 @@ typedef enum _XDR_DT {
DT_UI4
,
DT_UI8
,
DT_URI
,
DT_UUID
DT_UUID
,
LAST_DT
}
XDR_DT
;
#define DT__N_TYPES (DT_UUID+1)
extern
HRESULT
get_typeinfo
(
tid_t
tid
,
ITypeInfo
**
typeinfo
)
DECLSPEC_HIDDEN
;
extern
void
release_typelib
(
void
)
DECLSPEC_HIDDEN
;
...
...
This diff is collapsed.
Click to expand it.
dlls/msxml3/schema.c
+
2
−
2
View file @
b1480630
...
...
@@ -391,7 +391,7 @@ static DWORD dt_hash_bstr(OLECHAR const* bstr, int len /* calculated if -1 */)
return
hval
;
}
static
const
xmlChar
*
const
DT_string_table
[
DT__N_TYPES
]
=
static
const
xmlChar
*
const
DT_string_table
[
LAST_DT
]
=
{
DT_bin_base64
,
DT_bin_hex
,
...
...
@@ -431,7 +431,7 @@ static const xmlChar *const DT_string_table[DT__N_TYPES] =
DT_uuid
};
static
const
WCHAR
*
const
DT_wstring_table
[
DT__N_TYPES
]
=
static
const
WCHAR
*
const
DT_wstring_table
[
LAST_DT
]
=
{
wDT_bin_base64
,
wDT_bin_hex
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment