aboutsummaryrefslogtreecommitdiff
path: root/ark/include/soul_interface.h
blob: 6e45573378ec28cf6ec330b7a42c41fb359a0340 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _SOUL_INTF
#define _SOUL_INTF

#include <stdint.h>

#include "soul_types.h"
#include "soul_exports.h"

#include <wlr/types/wlr_input_device.h>
#include <wlr/types/wlr_keyboard.h>
#include <wlr/types/wlr_pointer.h>

/*
 * Soul ABI: souls must export these symbols.
 *
 * This header is intended to be included by soul implementations.
 */

#define DECLARE_SOUL_EXPORT(ret, name, args) ret name args;
ARKSOUL_EXPORTS(DECLARE_SOUL_EXPORT)
#undef DECLARE_SOUL_EXPORT

#endif /* _SOUL_INTF */