Update Installation Documentation
[apps/agl-service-unicens.git] / ucs2-afb / ucs_apihat.h
1 /*
2  * AlsaLibMapping -- provide low level interface with AUDIO lib (extracted from alsa-json-gateway code)
3  * Copyright (C) 2015,2016,2017, Fulup Ar Foll fulup@iot.bzh
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #ifndef UCS2BINDING_H
19 #define UCS2BINDING_H
20
21 #ifndef PUBLIC
22   #define PUBLIC
23 #endif
24 #define STATIC static
25
26 #include <json-c/json.h>
27 #include <afb/afb-binding.h>
28 #include <afb/afb-service-itf.h>
29
30 #include "ucs_interface.h"
31
32 #ifndef CONTROL_CDEV_TX
33 #error FATAL: CONTROL_CDEV_TX missing (check ./etc/config.cmake + rerun cmake)
34 #endif
35 #ifndef CONTROL_CDEV_RX
36 #error FATAL: CONTROL_CDEV_RX missing (check ./etc/config.cmake + rerun cmake)
37 #endif
38
39 // import from AlsaAfbBinding
40 extern const struct afb_binding_interface *afbIface;
41 extern struct afb_service afbSrv;
42
43 // API verbs prototype
44 PUBLIC void initUcs2 (struct afb_req request);
45
46
47 #endif /* UCS2BINDING_H */
48