|
const WCHAR* const* kp_chars = {{'0','1'.......},{'a','b'......}}
이렇게 초기화를 할려구하는데 아래와 같이 타입캐스팅 에러가 납니다.
'cannot covert form 'const char' to 'const unsigned short *const *
Conversion from intergral type to pointer type requires reinterpret_cast, C-style cast or function-style cast'
단 아래와 같이 배열로 잡으면 에러가 나지 않습니다.
WCHAR kp_chars[2][26] = {{'0','1'.......},{'a','b'......}}
도와주세요
|