mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
16 lines
314 B
C
16 lines
314 B
C
#ifndef __TESTFIXTURE_H__
|
|
#define __TESTFIXTURE_H__
|
|
|
|
#include <glib-object.h>
|
|
#include <glib.h>
|
|
#include <ibus.h>
|
|
#include <km_linux_common.h>
|
|
#include "ibusimcontext.h"
|
|
|
|
typedef struct {
|
|
IBusBus* bus;
|
|
GtkIMContext* context;
|
|
IBusIMContext* ibuscontext;
|
|
} IBusKeymanTestsFixture;
|
|
|
|
#endif // __TESTFIXTURE_H__
|