Module: wine Branch: master Commit: 4da30bfcfc7607bb4ddd057900120092fd46786c URL: http://source.winehq.org/git/wine.git/?a=commit;h=4da30bfcfc7607bb4ddd057900...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Jul 10 22:37:53 2007 +0200
winedump: Add RT_MANIFEST resource type.
---
tools/winedump/pe.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/tools/winedump/pe.c b/tools/winedump/pe.c index 887a119..955d627 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];