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
a22dcd1a
Commit
a22dcd1a
authored
Jul 19, 2007
by
Eric Pouech
Committed by
Alexandre Julliard
Jul 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Added parsing of public key token in manifests.
parent
2bc3c39c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
actctx.c
dlls/ntdll/actctx.c
+7
-0
No files found.
dlls/ntdll/actctx.c
View file @
a22dcd1a
...
...
@@ -90,6 +90,7 @@ struct assembly_identity
{
WCHAR
*
name
;
WCHAR
*
arch
;
WCHAR
*
public_key
;
struct
version
version
;
enum
assembly_id_type
type
;
};
...
...
@@ -181,6 +182,7 @@ struct actctx_loader
#define MANIFESTVERSION_ATTR "manifestVersion"
#define NAME_ATTR "name"
#define PROCESSORARCHITECTURE_ATTR "processorArchitecture"
#define PUBLICKEYTOKEN_ATTR "publicKeyToken"
#define TLBID_ATTR "tlbid"
#define TYPE_ATTR "type"
#define VERSION_ATTR "version"
...
...
@@ -287,6 +289,7 @@ static void free_assembly_identity(struct assembly_identity *ai)
{
RtlFreeHeap
(
GetProcessHeap
(),
0
,
ai
->
name
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
ai
->
arch
);
RtlFreeHeap
(
GetProcessHeap
(),
0
,
ai
->
public_key
);
}
static
struct
entity
*
add_entity
(
struct
dll_redirect
*
dll
,
DWORD
kind
)
...
...
@@ -627,6 +630,10 @@ static BOOL parse_assembly_identity_elem(xmlbuf_t* xmlbuf, ACTIVATION_CONTEXT* a
{
if
(
!
(
ai
->
arch
=
xmlstrdupW
(
&
attr_value
)))
return
FALSE
;
}
else
if
(
xmlstr_cmp
(
&
attr_name
,
PUBLICKEYTOKEN_ATTR
))
{
if
(
!
(
ai
->
public_key
=
xmlstrdupW
(
&
attr_value
)))
return
FALSE
;
}
else
{
WARN
(
"unknown attr %s=%s
\n
"
,
debugstr_xmlstr
(
&
attr_name
),
...
...
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