cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X

Is there a way to change the ProPath data type to wchar_t?

SP_10210577
11-Garnet

Is there a way to change the ProPath data type to wchar_t?

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

 

1 ACCEPTED SOLUTION

Accepted Solutions

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.

View solution in original post

1 REPLY 1

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.

Top Tags