mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-27 01:57:41 +00:00
This change fixes #13171 where we failed to output after the first keypress because the keyman system service had to be started. This change introduces a new method `Ping` that we call to force keyman-system-service to be started. Fixes: #13171
19 lines
372 B
C
19 lines
372 B
C
#ifndef __KEYMANSYSTEMSERVICECLIENT_H__
|
|
#define __KEYMANSYSTEMSERVICECLIENT_H__
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void set_capslock_indicator(guint32 capsLockState);
|
|
gint32 get_capslock_indicator();
|
|
void call_ordered_output_sentinel();
|
|
void ping_keyman_system_service();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __KEYMANSYSTEMSERVICECLIENT_H__
|