summaryrefslogtreecommitdiff
path: root/libgupnp/gupnp-device-proxy.h
blob: 04335a0af602ffa8ffb80253f2de4e37736beb2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * Copyright (C) 2006, 2007 OpenedHand Ltd.
 *
 * Author: Jorn Baayen <jorn@openedhand.com>
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#ifndef GUPNP_DEVICE_PROXY_H
#define GUPNP_DEVICE_PROXY_H

#include "gupnp-device-info.h"

G_BEGIN_DECLS

#define GUPNP_TYPE_DEVICE_PROXY \
                (gupnp_device_proxy_get_type ())

G_DECLARE_DERIVABLE_TYPE (GUPnPDeviceProxy,
                          gupnp_device_proxy,
                          GUPNP,
                          DEVICE_PROXY,
                          GUPnPDeviceInfo)

struct _GUPnPDeviceProxyClass {
        GUPnPDeviceInfoClass parent_class;

        /* future padding */
        void (* _gupnp_reserved1) (void);
        void (* _gupnp_reserved2) (void);
        void (* _gupnp_reserved3) (void);
        void (* _gupnp_reserved4) (void);
};

G_END_DECLS

#endif /* GUPNP_DEVICE_PROXY_H */