#ifndef BB_STD_ASYNC_CB_H #define BB_STD_ASYNC_CB_H #include #include "async.h" namespace bbAsync{ int createAsyncCallback( bbFunction func,bool oneshot ); void destroyAsyncCallback( int callback ); void invokeAsyncCallback( int callback ); } #endif