diff options
author | Thomas Haller <thaller@redhat.com> | 2016-03-29 13:01:18 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2016-03-29 13:01:18 +0200 |
commit | 53011592af2d282947a513b2b7da1b3b08be2aea (patch) | |
tree | af9f3943aac5ff2ea1a685567301e287b400d961 /shared/nm-shared-utils.h | |
parent | c473cb42d0d7a2157ddba119aac17fdb9c448e2d (diff) | |
parent | b645a3b39d574fdf4e02bae3ee18bea8a3d3f95c (diff) | |
download | NetworkManager-th/mif.tar.gz |
Merge branch master of git://anongit.freedesktop.org/NetworkManager/NetworkManagerth/mif
Diffstat (limited to 'shared/nm-shared-utils.h')
-rw-r--r-- | shared/nm-shared-utils.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/shared/nm-shared-utils.h b/shared/nm-shared-utils.h new file mode 100644 index 0000000000..f80c850c69 --- /dev/null +++ b/shared/nm-shared-utils.h @@ -0,0 +1,63 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + * (C) Copyright 2016 Red Hat, Inc. + */ + +#ifndef __NM_SHARED_UTILS_H__ +#define __NM_SHARED_UTILS_H__ + +/******************************************************************************/ + +gint64 _nm_utils_ascii_str_to_int64 (const char *str, guint base, gint64 min, gint64 max, gint64 fallback); + +/******************************************************************************/ + +/** + * NMUtilsError: + * @NM_UTILS_ERROR_UNKNOWN: unknown or unclassified error + * @NM_UTILS_ERROR_CANCELLED_DISPOSING: when disposing an object that has + * pending aynchronous operations, the operation is cancelled with this + * error reason. Depending on the usage, this might indicate a bug because + * usually the target object should stay alive as long as there are pending + * operations. + */ +typedef enum { + NM_UTILS_ERROR_UNKNOWN = 0, /*< nick=Unknown >*/ + NM_UTILS_ERROR_CANCELLED_DISPOSING, /*< nick=CancelledDisposing >*/ +} NMUtilsError; + +#define NM_UTILS_ERROR (nm_utils_error_quark ()) +GQuark nm_utils_error_quark (void); + +void nm_utils_error_set_cancelled (GError **error, + gboolean is_disposing, + const char *instance_name); +gboolean nm_utils_error_is_cancelled (GError *error, + gboolean consider_is_disposing); + +/******************************************************************************/ + +gboolean nm_g_object_set_property (GObject *object, + const gchar *property_name, + const GValue *value, + GError **error); + +/******************************************************************************/ + +#endif /* __NM_SHARED_UTILS_H__ */ |