Remmina - The GTK+ Remote Desktop Client  v1.4.33
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
python_wrapper_secret.c File Reference

Go to the source code of this file.

Functions

void python_wrapper_secret_init (void)
 Initializes the Python plugin specialisation for secret plugins. More...
 
gboolean python_wrapper_secret_init_wrapper (RemminaSecretPlugin *instance)
 
gboolean python_wrapper_secret_is_service_available_wrapper (RemminaSecretPlugin *instance)
 
void python_wrapper_secret_store_password_wrapper (RemminaSecretPlugin *instance, RemminaFile *file, const gchar *key, const gchar *password)
 
gchar * python_wrapper_secret_get_password_wrapper (RemminaSecretPlugin *instance, RemminaFile *file, const gchar *key)
 
void python_wrapper_secret_delete_password_wrapper (RemminaSecretPlugin *instance, RemminaFile *file, const gchar *key)
 
RemminaPluginpython_wrapper_create_secret_plugin (PyPlugin *plugin)
 Creates a new instance of the RemminaPluginSecret, initializes its members and references the wrapper functions. More...
 

Function Documentation

◆ python_wrapper_create_secret_plugin()

RemminaPlugin* python_wrapper_create_secret_plugin ( PyPlugin instance)

Creates a new instance of the RemminaPluginSecret, initializes its members and references the wrapper functions.

Parameters
instanceThe instance of the Python plugin.
Returns
Returns a new instance of the RemminaPlugin (must be freed!).

Definition at line 106 of file python_wrapper_secret.c.

◆ python_wrapper_secret_delete_password_wrapper()

void python_wrapper_secret_delete_password_wrapper ( RemminaSecretPlugin instance,
RemminaFile file,
const gchar *  key 
)

Definition at line 97 of file python_wrapper_secret.c.

◆ python_wrapper_secret_get_password_wrapper()

gchar* python_wrapper_secret_get_password_wrapper ( RemminaSecretPlugin instance,
RemminaFile file,
const gchar *  key 
)

Definition at line 80 of file python_wrapper_secret.c.

◆ python_wrapper_secret_init()

void python_wrapper_secret_init ( void  )

Initializes the Python plugin specialisation for secret plugins.

Definition at line 46 of file python_wrapper_secret.c.

◆ python_wrapper_secret_init_wrapper()

gboolean python_wrapper_secret_init_wrapper ( RemminaSecretPlugin instance)

Definition at line 51 of file python_wrapper_secret.c.

◆ python_wrapper_secret_is_service_available_wrapper()

gboolean python_wrapper_secret_is_service_available_wrapper ( RemminaSecretPlugin instance)

Definition at line 60 of file python_wrapper_secret.c.

◆ python_wrapper_secret_store_password_wrapper()

void python_wrapper_secret_store_password_wrapper ( RemminaSecretPlugin instance,
RemminaFile file,
const gchar *  key,
const gchar *  password 
)

Definition at line 70 of file python_wrapper_secret.c.