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

View file

@ -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];