Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #pragma once
5 : :
6 : : #include <valent.h>
7 : :
8 : : G_BEGIN_DECLS
9 : :
10 : : #define VALENT_TYPE_CONTACTS_DEVICE (valent_contacts_device_get_type())
11 : :
12 [ + - + - : 8 : G_DECLARE_FINAL_TYPE (ValentContactsDevice, valent_contacts_device, VALENT, CONTACTS_DEVICE, ValentContactsAdapter)
- + ]
13 : :
14 : : ValentContactsAdapter * valent_contacts_device_new (ValentDevice *device);
15 : : void valent_contacts_device_handle_packet (ValentContactsAdapter *adapter,
16 : : const char *type,
17 : : JsonNode *packet);
18 : :
19 : : G_END_DECLS
20 : :
|