Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! 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.