Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここで次のように tchar 配列を作成しようとしています: TCHAR c_wText[100] = _T("string here");
しかし、コンパイル時にエラーメッセージが表示されます: int-array initialized from non-wide string
私は何か見落としてますか?
@WhozCraigが親切に言ったことを要約しています:
Unicode ビルドの場合、UNICODE と _UNICODE の両方を定義する必要があります
次に、TCHAR と _T("your string") を使用します