> Hi list,
>
> How should DEFINE_ENTRY_POINT be used? I've tried DEFINE_ENTRY_POINT(
> myentry ), but I get:
Hi Lee,
Watch "std" and "zlib" sources for it.
Basicaly you do the following :
DEFINE_ENTRY_POINT(my_main);
void my_main() {
// put initialisation code here
}
Nicolas