diff options
| author | Michael Biebl <biebl@debian.org> | 2020-10-05 22:27:18 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2020-10-05 22:27:18 +0200 |
| commit | aafc1dbe4712c86189bbc1d4d54ad8cb4c69be7e (patch) | |
| tree | a2a9bb4d007339a0b1304540388230ccedac32bd /docs/libnm/html/NMVpnEditorPlugin.html | |
| parent | e7b44ef4c80907346ec7492a09c45277459924fc (diff) | |
New upstream version 1.27.90 upstream/1.27.90
Diffstat (limited to 'docs/libnm/html/NMVpnEditorPlugin.html')
| -rw-r--r-- | docs/libnm/html/NMVpnEditorPlugin.html | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/docs/libnm/html/NMVpnEditorPlugin.html b/docs/libnm/html/NMVpnEditorPlugin.html index 2fb60b9c..88e4d866 100644 --- a/docs/libnm/html/NMVpnEditorPlugin.html +++ b/docs/libnm/html/NMVpnEditorPlugin.html @@ -701,30 +701,24 @@ reference as the plugin-info might also reference the editor-plugin.</p> <div class="refsect2"> <a name="NMVpnEditorPluginInterface"></a><h3>NMVpnEditorPluginInterface</h3> <pre class="programlisting">typedef struct { - GTypeInterface g_iface; + GTypeInterface g_iface; - NMVpnEditor * (*get_editor) (NMVpnEditorPlugin *plugin, - NMConnection *connection, - GError **error); + NMVpnEditor *(*get_editor)(NMVpnEditorPlugin *plugin, NMConnection *connection, GError **error); - NMVpnEditorPluginCapability (*get_capabilities) (NMVpnEditorPlugin *plugin); + NMVpnEditorPluginCapability (*get_capabilities)(NMVpnEditorPlugin *plugin); - NMConnection * (*import_from_file) (NMVpnEditorPlugin *plugin, - const char *path, - GError **error); + NMConnection *(*import_from_file)(NMVpnEditorPlugin *plugin, const char *path, GError **error); - gboolean (*export_to_file) (NMVpnEditorPlugin *plugin, - const char *path, - NMConnection *connection, - GError **error); + gboolean (*export_to_file)(NMVpnEditorPlugin *plugin, + const char * path, + NMConnection * connection, + GError ** error); - char * (*get_suggested_filename) (NMVpnEditorPlugin *plugin, NMConnection *connection); + char *(*get_suggested_filename)(NMVpnEditorPlugin *plugin, NMConnection *connection); - void (*notify_plugin_info_set) (NMVpnEditorPlugin *plugin, - NMVpnPluginInfo *plugin_info); + void (*notify_plugin_info_set)(NMVpnEditorPlugin *plugin, NMVpnPluginInfo *plugin_info); - const NMVpnEditorPluginVT *(*get_vt) (NMVpnEditorPlugin *plugin, - gsize *out_vt_size); + const NMVpnEditorPluginVT *(*get_vt)(NMVpnEditorPlugin *plugin, gsize *out_vt_size); } NMVpnEditorPluginInterface; </pre> <p>Interface for VPN editor plugins.</p> |