#ifndef BB_MOJO_APP_ASYNC_H #define BB_MOJO_APP_ASYNC_H #include //Call on GUI thread only! // int bbAddAsyncCallback( bbFunction callback ); //Can call on any thread...queued for later execution by GUI thread. // void bbInvokeAsyncCallback( int callback,bool remove ); void bbRemoveAsyncCallback( int callback ); #endif