NetworkManager/clients/tui/nm-editor-utils.h
Lubomir Rintel 24028a2246 all: SPDX header conversion
$ find * -type f |xargs perl contrib/scripts/spdx.pl
  $ git rm contrib/scripts/spdx.pl
2019-09-10 11:19:56 +02:00

24 lines
705 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2012, 2013 Red Hat, Inc.
*/
#ifndef NM_EDITOR_UTILS_H
#define NM_EDITOR_UTILS_H
typedef struct {
const char *name;
GType setting_type;
GType slave_setting_type;
GType device_type;
gboolean virtual;
} NMEditorConnectionTypeData;
NMEditorConnectionTypeData **nm_editor_utils_get_connection_type_list (void);
NMEditorConnectionTypeData *nm_editor_utils_get_connection_type_data (NMConnection *conn);
NMConnection *nm_editor_utils_create_connection (GType type,
NMConnection *master,
NMClient *client);
#endif /* NM_EDITOR_UTILS_H */