Fix © in resources

The \xa9 is © on Windows-125x code pages. When Wintun was compiled on a
Windows computer using UTF-8 as default code page (for "non-Unicode"
programs), the Copyright notice in resources was wrong.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2021-03-19 11:55:58 +01:00
parent a6fa9c1b67
commit 2f1d1ab827
2 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,8 @@
#include <windows.h>
#include <ntverp.h>
#pragma code_page(1252)
wintun.cat RCDATA "wintun\\wintun.cat"
wintun.inf RCDATA "wintun\\wintun.inf"
wintun.sys RCDATA "wintun\\wintun.sys"

View File

@ -6,6 +6,8 @@
#include <windows.h>
#include <ntverp.h>
#pragma code_page(1252)
#define STRINGIZE(x) #x
#define EXPAND(x) STRINGIZE(x)