device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-glib / nm-types.h
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /*
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Lesser General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public
14  * License along with this library; if not, write to the
15  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16  * Boston, MA 02110-1301 USA.
17  *
18  * Copyright 2008 Red Hat, Inc.
19  */
20
21 #ifndef NM_TYPES_H
22 #define NM_TYPES_H
23
24 #include <glib.h>
25 #include <glib-object.h>
26
27 #include <nm-glib-enum-types.h>
28
29 G_BEGIN_DECLS
30
31 #define NM_TYPE_SSID  (nm_ssid_get_type ())
32 GType     nm_ssid_get_type (void) G_GNUC_CONST;
33
34 #define NM_TYPE_UINT_ARRAY  (nm_uint_array_get_type ())
35 GType     nm_uint_array_get_type (void) G_GNUC_CONST;
36
37 #define NM_TYPE_STRING_ARRAY  (nm_string_array_get_type ())
38 GType     nm_string_array_get_type (void) G_GNUC_CONST;
39
40 #define NM_TYPE_OBJECT_ARRAY  (nm_object_array_get_type ())
41 GType     nm_object_array_get_type (void) G_GNUC_CONST;
42
43 #define NM_TYPE_IP6_ADDRESS_OBJECT_ARRAY  (nm_ip6_address_object_array_get_type ())
44 GType     nm_ip6_address_object_array_get_type (void) G_GNUC_CONST;
45
46 #define NM_TYPE_IP6_ADDRESS_ARRAY  (nm_ip6_address_array_get_type ())
47 GType     nm_ip6_address_array_get_type (void) G_GNUC_CONST;
48
49 #define NM_TYPE_IP6_ROUTE_OBJECT_ARRAY  (nm_ip6_route_object_array_get_type ())
50 GType     nm_ip6_route_object_array_get_type (void) G_GNUC_CONST;
51
52 G_END_DECLS
53
54 #endif /* NM_TYPES_H */