14 lines
421 B
Plaintext
14 lines
421 B
Plaintext
// 30 may 2015
|
|
#include "winapi.hpp"
|
|
#include "resources.hpp"
|
|
|
|
// this is a UTF-8 file
|
|
#pragma code_page(65001)
|
|
|
|
// this is the Common Controls 6 manifest
|
|
// we only define it in a shared build; static builds have to include the appropriate parts of the manifest in the output executable
|
|
// LONGTERM set up the string values here
|
|
#ifndef _UI_STATIC
|
|
ISOLATIONAWARE_MANIFEST_RESOURCE_ID RT_MANIFEST "libui.manifest"
|
|
#endif
|