Start the Velocity Library.
void main () // Main function { start_vLib (); // Load stuff, declare variables, etc. for(;;) { // I usually check for input and update stuff here. startDrawing (); // Drawing some stuff. endDrawing ( FLIP|SYNC ); } // Unload stuff here stop_vLib (); }