|
|
@ -22,7 +22,7 @@ class FrontEndControler { |
|
|
|
zmutex m_cmdlock = {"FrontEndControler_LOCK"}; |
|
|
|
|
|
|
|
tjc::tjc_usr_event_t event_cache; |
|
|
|
|
|
|
|
|
|
|
|
tjc::tjc_usr_event_t input_file_event_cache; |
|
|
|
bool input_file_event_cache_state = false; |
|
|
|
|
|
|
@ -100,4 +100,10 @@ class FrontEndControler { |
|
|
|
void callUsrEventCb(tjc::tjc_usr_event_t* event); |
|
|
|
}; |
|
|
|
|
|
|
|
static inline const char* zitoa(int val) { |
|
|
|
static char buf[32]; |
|
|
|
sprintf(buf, "%d", val); |
|
|
|
return buf; |
|
|
|
} |
|
|
|
|
|
|
|
} // namespace iflytop
|