I am working with the big c++ text. I am trying to work with its graphics library. my error is LNK 1561 entry point must be defined.
#include "ccc_win.h"
int ccc_win_main()
{
Point p(1, 3);
cwin << p << Circle(p, 2.5);
system("pause");
return 0;
}