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
45109f45
Commit
45109f45
authored
Oct 28, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Oct 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Display the privatePath when parsing the .config file.
parent
ebe121e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
+49
-0
config.c
dlls/mscoree/config.c
+49
-0
No files found.
dlls/mscoree/config.c
View file @
45109f45
...
...
@@ -41,8 +41,11 @@ WINE_DEFAULT_DEBUG_CHANNEL( mscoree );
enum
parse_state
{
STATE_ASSEMBLY_BINDING
,
STATE_ROOT
,
STATE_CONFIGURATION
,
STATE_PROBING
,
STATE_RUNTIME
,
STATE_STARTUP
,
STATE_UNKNOWN
};
...
...
@@ -147,6 +150,23 @@ static HRESULT parse_startup(ConfigFileHandler *This, ISAXAttributes *pAttr)
return
hr
;
}
static
HRESULT
parse_probing
(
ConfigFileHandler
*
This
,
ISAXAttributes
*
pAttr
)
{
static
const
WCHAR
privatePath
[]
=
{
'p'
,
'r'
,
'i'
,
'v'
,
'a'
,
't'
,
'e'
,
'P'
,
'a'
,
't'
,
'h'
,
0
};
static
const
WCHAR
empty
[]
=
{
0
};
LPCWSTR
value
;
int
value_size
;
HRESULT
hr
;
hr
=
ISAXAttributes_getValueFromName
(
pAttr
,
empty
,
0
,
privatePath
,
lstrlenW
(
privatePath
),
&
value
,
&
value_size
);
if
(
SUCCEEDED
(
hr
))
FIXME
(
"privatePath=%s not implemented
\n
"
,
debugstr_wn
(
value
,
value_size
));
hr
=
S_OK
;
return
hr
;
}
static
HRESULT
parse_supported_runtime
(
ConfigFileHandler
*
This
,
ISAXAttributes
*
pAttr
)
{
static
const
WCHAR
version
[]
=
{
'v'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
...
...
@@ -199,8 +219,12 @@ static HRESULT WINAPI ConfigFileHandler_startElement(ISAXContentHandler *iface,
{
ConfigFileHandler
*
This
=
impl_from_ISAXContentHandler
(
iface
);
static
const
WCHAR
configuration
[]
=
{
'c'
,
'o'
,
'n'
,
'f'
,
'i'
,
'g'
,
'u'
,
'r'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
assemblyBinding
[]
=
{
'a'
,
's'
,
's'
,
'e'
,
'm'
,
'b'
,
'l'
,
'y'
,
'B'
,
'i'
,
'n'
,
'd'
,
'i'
,
'n'
,
'g'
,
0
};
static
const
WCHAR
probing
[]
=
{
'p'
,
'r'
,
'o'
,
'b'
,
'i'
,
'n'
,
'g'
,
0
};
static
const
WCHAR
runtime
[]
=
{
'r'
,
'u'
,
'n'
,
't'
,
'i'
,
'm'
,
'e'
,
0
};
static
const
WCHAR
startup
[]
=
{
's'
,
't'
,
'a'
,
'r'
,
't'
,
'u'
,
'p'
,
0
};
static
const
WCHAR
supportedRuntime
[]
=
{
's'
,
'u'
,
'p'
,
'p'
,
'o'
,
'r'
,
't'
,
'e'
,
'd'
,
'R'
,
'u'
,
'n'
,
't'
,
'i'
,
'm'
,
'e'
,
0
};
HRESULT
hr
=
S_OK
;
TRACE
(
"%s %s %s
\n
"
,
debugstr_wn
(
pNamespaceUri
,
nNamespaceUri
),
...
...
@@ -231,6 +255,31 @@ static HRESULT WINAPI ConfigFileHandler_startElement(ISAXContentHandler *iface,
This
->
states
[
++
This
->
statenum
]
=
STATE_STARTUP
;
break
;
}
else
if
(
nLocalName
==
sizeof
(
runtime
)
/
sizeof
(
WCHAR
)
-
1
&&
lstrcmpW
(
pLocalName
,
runtime
)
==
0
)
{
This
->
states
[
++
This
->
statenum
]
=
STATE_RUNTIME
;
break
;
}
else
goto
unknown
;
case
STATE_RUNTIME
:
if
(
nLocalName
==
sizeof
(
assemblyBinding
)
/
sizeof
(
WCHAR
)
-
1
&&
lstrcmpW
(
pLocalName
,
assemblyBinding
)
==
0
)
{
This
->
states
[
++
This
->
statenum
]
=
STATE_ASSEMBLY_BINDING
;
break
;
}
else
goto
unknown
;
case
STATE_ASSEMBLY_BINDING
:
if
(
nLocalName
==
sizeof
(
probing
)
/
sizeof
(
WCHAR
)
-
1
&&
lstrcmpW
(
pLocalName
,
probing
)
==
0
)
{
hr
=
parse_probing
(
This
,
pAttr
);
This
->
states
[
++
This
->
statenum
]
=
STATE_PROBING
;
break
;
}
else
goto
unknown
;
case
STATE_STARTUP
:
...
...
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