You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can see that CreateFileA https://docs.microsoft.com/en-us/windows/desktop/api/FileAPI/nf-fileapi-createfilea requires a non-wide char pointer, and the CreateFileW version is probably supposed to be used. I don't know how CreateFile works, but I assume that it must be something that ought to resolve to CreateFileA or CreateFileW according to the type of the first parameter, but it didn't work in this case.
Given that the non-Windows code uses a normal non-wide char, perhaps Windows should also do that?
The text was updated successfully, but these errors were encountered:
At
clFFT/src/library/fft_binary_lookup.cpp
Line 123 in c59712e
I can see that CreateFileA https://docs.microsoft.com/en-us/windows/desktop/api/FileAPI/nf-fileapi-createfilea requires a non-wide char pointer, and the CreateFileW version is probably supposed to be used. I don't know how CreateFile works, but I assume that it must be something that ought to resolve to CreateFileA or CreateFileW according to the type of the first parameter, but it didn't work in this case.
Given that the non-Windows code uses a normal non-wide char, perhaps Windows should also do that?
The text was updated successfully, but these errors were encountered: