Closed Syrfa closed 1 year ago
The error seems pretty straightforward actually. LPWSTR is a const pointer to a wchar_t, which stands for wide character. LPCSTR is a const pointer to character. The most obvious and naive fix is to go to the code block at klog_main.cpp at line 56 and change the type of a to LPCSTR. Edit: Actually it might be on line 92 of klog_main.cpp in the windows folder.
The error seems pretty straightforward actually. LPWSTR is a const pointer to a wchar_t, which stands for wide character. LPCSTR is a const pointer to character. The most obvious and naive fix is to go to the code block at klog_main.cpp at line 56 and change the type of a to LPCSTR. Edit: Actually it might be on line 92 of klog_main.cpp in the windows folder.
Cheers