Ciao a tutti,
seguendo pari-pari un esempio apl_three su un tutorial on-line, che deve creare un editor ho problemi in fase di compilazione nella seguente riga:
hEdit = CreateWindowEx(ES_EX_CLIENTEDGE, "EDIT", "",
WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL | ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL,
0,0,100,100,hwnd,(HMENU)IDC_MAIN_EDIT,GetModuleHan dle(NULL),NULL);
L'errore è il seguente:
76 main.c
`ES_EX_CLIENTEDGE' undeclared (first use in this function)
eppure non è stato modificato nulla. Perchè? Grazie a tutti.