FLTK problems....

1
2
3
4
5
6
7
8
9
10
11
12
#include <FL/Fl.h>
#include <FL/Fl_Box.h>
#include <FL/Fl_window.h>


int main()
{
	FL_Window window(200,200,"Window Title");
	FL_Box box(0,0,200,200, "Hey I mean, Hello World");
	window.show();
	return Fl::run();
}


i have everything installed correctly i made it a win32 project not console as it says in bjarnes book... at first i did it wrong by copying the files OUT of the FL folder and then i fixed that by copying the whole folder in... and it works but its giving me syntax errors.... anyone use this b4 that could help me out
anyways i fixed it

it was supposed to be Fl_
not FL_
Topic archived. No new replies allowed.