blob: 49f486c19c9fcc00c63a1ccd91c2654f4a4079f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 30 may 2015
// this is a UTF-8 file
#pragma code_page(65001)
// this is the Common Controls 6 manifest
// TODO set up the string values here
// 1 is the value of CREATEPROCESS_MANIFEST_RESOURCE_ID and 24 is the value of RT_MANIFEST; we use it directly to avoid needing to share winapi.h with the tests and examples
#ifndef _UI_STATIC
1 24 "example.manifest"
#else
1 24 "example.static.manifest"
#endif
|