Created
July 9, 2017 22:26
-
-
Save pmachapman/17ff63a05c494e9e2db404151885d9d0 to your computer and use it in GitHub Desktop.
Another example on how to cast a char array to an LPCWSTR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <tchar.h> | |
| #include <windows.h> | |
| int main() | |
| { | |
| MessageBox(NULL, _T("Testing, 123!"), _T("Test"), MB_OK); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment