Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
It's the hardest to change the data type while developing it
Is there a function that changes the ProPath type to wchar_t?
In addition to this, if you know the function of changing the data type, I would appreciate it if you could recommend it
Solved! Go to Solution.
ProPath is a wchar_t array with the size of PRO_PATH_SIZE characters, see its definition:
typedef wchar_t ProPath[PRO_PATH_SIZE];
So, you can pass a ProPath variable wherever a wchar_t* input type is required.
ProPath is a wchar_t array with the size of PRO_PATH_SIZE characters, see its definition:
typedef wchar_t ProPath[PRO_PATH_SIZE];
So, you can pass a ProPath variable wherever a wchar_t* input type is required.