winedump: Add RT_MANIFEST resource type.

This commit is contained in:
Alexandre Julliard 2007-07-10 22:37:53 +02:00
parent 41db95323d
commit 4da30bfcfc
1 changed files with 2 additions and 1 deletions

View File

@ -939,7 +939,8 @@ static const char *get_resource_type( unsigned int id )
"VXD", "VXD",
"ANICURSOR", "ANICURSOR",
"ANIICON", "ANIICON",
"HTML" "HTML",
"RT_MANIFEST"
}; };
if ((size_t)id < sizeof(types)/sizeof(types[0])) return types[id]; if ((size_t)id < sizeof(types)/sizeof(types[0])) return types[id];