It compiles to working code in this example, but if I put more complicated things around it the program shuts down and fails to open the dialog window. The error message is exactly:
test.cpp:10:19: warning: deprecated conversion from string constant to 'LPWSTR {aka wchar_t*}' [-Wwrite-strings]
#include <windows.h>
int main() {
OPENFILENAMEW ofn;
ZeroMemory(&ofn, sizeof(ofn));
ofn.lStructSize = sizeof(OPENFILENAME);
ofn.nMaxFile = MAX_PATH;
ofn.lpstrFile = L"file name";
}
