diff options
Diffstat (limited to 'test/unit_tests/resource.rc')
-rw-r--r-- | test/unit_tests/resource.rc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/unit_tests/resource.rc b/test/unit_tests/resource.rc new file mode 100644 index 0000000..4ff6e5c --- /dev/null +++ b/test/unit_tests/resource.rc @@ -0,0 +1,15 @@ +#include "resource_ids.h" + +#include <windows.h> + +STRINGTABLE +{ + IDS_TEST_STRING, "This is a test resource string!" + IDS_TEST_STRING_WIDE, L"This is another test string, wide this time." +} + +// 0xdeadbeef, byte by byte +ID_TEST_DATA RCDATA +{ + 0xadde, 0xefbe +} |