mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
ntdll: Add parsing of the processor architecture in manifests.
This commit is contained in:
parent
c0e7cd9d93
commit
a5130f4e72
@ -89,6 +89,7 @@ enum assembly_id_type
|
||||
struct assembly_identity
|
||||
{
|
||||
WCHAR *name;
|
||||
WCHAR *arch;
|
||||
struct version version;
|
||||
enum assembly_id_type type;
|
||||
};
|
||||
@ -133,6 +134,7 @@ struct actctx_loader
|
||||
#define MANIFESTVERSION_ATTR "manifestVersion"
|
||||
#define NAME_ATTR "name"
|
||||
#define TYPE_ATTR "type"
|
||||
#define PROCESSORARCHITECTURE_ATTR "processorArchitecture"
|
||||
#define XMLNS_ATTR "xmlns"
|
||||
|
||||
#define MANIFEST_NAMESPACE "urn:schemas-microsoft-com:asm.v1"
|
||||
@ -211,6 +213,7 @@ static struct assembly *add_assembly(ACTIVATION_CONTEXT *actctx, enum assembly_t
|
||||
static void free_assembly_identity(struct assembly_identity *ai)
|
||||
{
|
||||
RtlFreeHeap( GetProcessHeap(), 0, ai->name );
|
||||
RtlFreeHeap( GetProcessHeap(), 0, ai->arch );
|
||||
}
|
||||
|
||||
static ACTIVATION_CONTEXT *check_actctx( HANDLE h )
|
||||
@ -401,6 +404,10 @@ static BOOL parse_assembly_identity_elem(xmlbuf_t* xmlbuf, ACTIVATION_CONTEXT* a
|
||||
}
|
||||
ai->type = TYPE_WIN32;
|
||||
}
|
||||
else if (xmlstr_cmp(&attr_name, PROCESSORARCHITECTURE_ATTR))
|
||||
{
|
||||
if (!(ai->arch = xmlstrdupW(&attr_value))) return FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
WARN("unknown attr %s=%s\n", debugstr_xmlstr(&attr_name),
|
||||
|
Loading…
Reference in New Issue
Block a user