samples/mfc: needs #define UNICODE

The header-order workaround for WINVER should also be used for
UNICODE and _UNICODE
This commit is contained in:
Bill Su 2023-05-26 12:26:08 -04:00
parent 27aa7e90a7
commit d970c8eeae

View file

@ -55,6 +55,12 @@
#ifndef WINVER
#define WINVER 0x0600
#endif
#ifndef _UNICODE
# define _UNICODE
#endif
#ifndef UNICODE
# define UNICODE
#endif
#include "stdafx.h"