2010-06-08 23:23:00 +04:00
|
|
|
/** \file clipboard.h
|
|
|
|
* \brief Header: Util for external clipboard
|
|
|
|
*/
|
|
|
|
|
2010-11-09 14:02:28 +03:00
|
|
|
#ifndef MC__CLIPBOARD_H
|
|
|
|
#define MC__CLIPBOARD_H
|
|
|
|
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
|
|
|
|
/*** declarations of public functions ************************************************************/
|
2010-06-08 23:23:00 +04:00
|
|
|
|
|
|
|
gboolean copy_file_to_ext_clip (void);
|
|
|
|
gboolean paste_to_file_from_ext_clip (void);
|
|
|
|
|
2010-11-09 14:02:28 +03:00
|
|
|
/*** inline functions ****************************************************************************/
|
2010-11-10 14:09:42 +03:00
|
|
|
#endif /* MC__CLIPBOARD_H */
|