From 4da30bfcfc7607bb4ddd057900120092fd46786c Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 10 Jul 2007 22:37:53 +0200 Subject: [PATCH] winedump: Add RT_MANIFEST resource type. --- tools/winedump/pe.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/winedump/pe.c b/tools/winedump/pe.c index 887a1195036..955d6276607 100644 --- a/tools/winedump/pe.c +++ b/tools/winedump/pe.c @@ -939,7 +939,8 @@ static const char *get_resource_type( unsigned int id ) "VXD", "ANICURSOR", "ANIICON", - "HTML" + "HTML", + "RT_MANIFEST" }; if ((size_t)id < sizeof(types)/sizeof(types[0])) return types[id];