|
@@ -95,9 +95,11 @@ PUBLISHED:
|
|
|
INLINE static void resume_after_pause();
|
|
INLINE static void resume_after_pause();
|
|
|
|
|
|
|
|
static void main_tick();
|
|
static void main_tick();
|
|
|
|
|
+ static void thread_tick();
|
|
|
static void thread_tick(const std::string &sync_name);
|
|
static void thread_tick(const std::string &sync_name);
|
|
|
|
|
|
|
|
void client_main_tick();
|
|
void client_main_tick();
|
|
|
|
|
+ void client_thread_tick();
|
|
|
void client_thread_tick(const std::string &sync_name);
|
|
void client_thread_tick(const std::string &sync_name);
|
|
|
bool client_connect(std::string hostname, int port);
|
|
bool client_connect(std::string hostname, int port);
|
|
|
void client_disconnect();
|
|
void client_disconnect();
|
|
@@ -291,10 +293,12 @@ PUBLISHED:
|
|
|
INLINE static void resume_after_pause() { }
|
|
INLINE static void resume_after_pause() { }
|
|
|
|
|
|
|
|
static void main_tick();
|
|
static void main_tick();
|
|
|
|
|
+ static void thread_tick();
|
|
|
static void thread_tick(const std::string &);
|
|
static void thread_tick(const std::string &);
|
|
|
|
|
|
|
|
public:
|
|
public:
|
|
|
void client_main_tick();
|
|
void client_main_tick();
|
|
|
|
|
+ void client_thread_tick();
|
|
|
void client_thread_tick(const std::string &sync_name);
|
|
void client_thread_tick(const std::string &sync_name);
|
|
|
bool client_connect(std::string hostname, int port);
|
|
bool client_connect(std::string hostname, int port);
|
|
|
void client_disconnect();
|
|
void client_disconnect();
|