salve,
sto cercando di utilizzare devc++ e le librerie grafiche wxwindows. posto il codice

/*
prova.wxr
*/

static char *dialog1 = "dialog(name = 'dialog1',\
style = 'wxRAISED_BORDER | wxCAPTION | wxSYSTEM_MENU',\
title = 'dialog1',\
id = 104,\
x = 10, y = 10, width = 228, height = 150,\
background_colour = 'D4D0C8',\
use_dialog_units = 1,\
use_system_defaults = 0,\
font = [8, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0, 'MS Shell Dlg'],\
control = [105, wxButton, 'Button', '0', 'button2', 85, 55, 42, 11, '',\
[8, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0, 'MS Shell Dlg']]).";


/*
* File: project.cpp
*/

#include "wx/wx.h"
#include "wx/resource.h"

#include "prova.wxr"

// Called to initialize the program
int main(int argc, char **argv)
{

wxResourceParseData(dialog1);
return TRUE;
}
compilando ottengo il seguente errore del linker

[Linker error] undefined reference to `wxResourceParseData(wxString const&, wxResourceTable*)'

nelle opzioni del linker vi sono
-lwxmswu -lstdc++ -lgcc -lodbc32 -lwsock32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lctl3d32 -ladvapi32 -lopengl32 -lglu32 -lole32 -loleaut32 -luuid
(quindi è linkata anche le librerie di wxwindows)

come mai questo errore?

grazie a chi sa aiutarmi

=^_^=