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_file.c File Reference

Go to the source code of this file.

Functions

void python_wrapper_file_init (void)
 Initializes the Python plugin specialisation for file plugins. More...
 
gboolean python_wrapper_file_import_test_func_wrapper (RemminaFilePlugin *instance, const gchar *from_file)
 
RemminaFilepython_wrapper_file_import_func_wrapper (RemminaFilePlugin *instance, const gchar *from_file)
 
gboolean python_wrapper_file_export_test_func_wrapper (RemminaFilePlugin *instance, RemminaFile *file)
 
gboolean python_wrapper_file_export_func_wrapper (RemminaFilePlugin *instance, RemminaFile *file, const gchar *to_file)
 
RemminaPluginpython_wrapper_create_file_plugin (PyPlugin *plugin)
 Creates a new instance of the RemminaPluginFile, initializes its members and references the wrapper functions. More...
 

Function Documentation

◆ python_wrapper_create_file_plugin()

RemminaPlugin* python_wrapper_create_file_plugin ( PyPlugin instance)

Creates a new instance of the RemminaPluginFile, 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 127 of file python_wrapper_file.c.

◆ python_wrapper_file_export_func_wrapper()

gboolean python_wrapper_file_export_func_wrapper ( RemminaFilePlugin instance,
RemminaFile file,
const gchar *  to_file 
)

Definition at line 112 of file python_wrapper_file.c.

◆ python_wrapper_file_export_test_func_wrapper()

gboolean python_wrapper_file_export_test_func_wrapper ( RemminaFilePlugin instance,
RemminaFile file 
)

Definition at line 93 of file python_wrapper_file.c.

◆ python_wrapper_file_import_func_wrapper()

RemminaFile* python_wrapper_file_import_func_wrapper ( RemminaFilePlugin instance,
const gchar *  from_file 
)

Definition at line 71 of file python_wrapper_file.c.

◆ python_wrapper_file_import_test_func_wrapper()

gboolean python_wrapper_file_import_test_func_wrapper ( RemminaFilePlugin instance,
const gchar *  from_file 
)

Definition at line 55 of file python_wrapper_file.c.

◆ python_wrapper_file_init()

void python_wrapper_file_init ( void  )

Initializes the Python plugin specialisation for file plugins.

Definition at line 50 of file python_wrapper_file.c.