Hallo!
Nachdem ich mein Dev-C++ auf die neueste version gebracht habe, gibt es ein Problem. Und zwar:
Der compiler m,eldet folgendes:
main.cpp: undefined reference to `GetOpenFileNameA@4'
Was ist hier los? Was fehlt ihm plözlich?
Ich bin mittlerweile seit zwei Tagen am verzweifeln.
Nachdem ich mein Dev-C++ auf die neueste version gebracht habe, gibt es ein Problem. Und zwar:
Code:
case IDM_MY_MAPNEW:
/*now we open a open/save-file dialog*/
//Initialization of OPENFILENAME//
ZeroMemory(&open_p, sizeof(open_p));
open_p.lStructSize = sizeof(open_p);
open_p.hwndOwner= hwnd;
open_p.lpstrFile= file_name;
open_p.lpstrFile[0] = '\0'; //we don't use file_name to initialize GetOpenFileName
open_p.nMaxFile = sizeof(file_name);
open_p.lpstrFilter = "All\0*.*\0CSV\0*.CSV\0"; //which file formats we ant to open
open_p.nFilterIndex = 2; // we use 2. of filter as default option
open_p.lpstrFileTitle = NULL;
open_p.nMaxFileTitle = 0;
open_p.lpstrInitialDir = NULL;
open_p.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST; //We want to be sure that this file exist
/* open/save-file dialog i ready and on the screen now*/
/*we use the path of file to construct our new map*/
if (GetOpenFileName(&open_p)==TRUE)
ConstructMap(open_p.lpstrFile);
Init(hwnd);
return 0;
Der compiler m,eldet folgendes:
main.cpp: undefined reference to `GetOpenFileNameA@4'
Was ist hier los? Was fehlt ihm plözlich?
Ich bin mittlerweile seit zwei Tagen am verzweifeln.