File: fileops.h

package info (click to toggle)
gpe-filemanager 0.25-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 624 kB
  • ctags: 216
  • sloc: ansic: 2,501; makefile: 81; xml: 71
file content (20 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _FILEOPS_H
#define _FILEOPS_H

#ifdef __cplusplus
extern "C"
{
#endif

void copy_file_clip (GtkWidget *active_view, gint col);
void paste_file_clip (void);
void ask_delete_file (GtkWidget *active_view, gint col);
void ask_move_file (GtkWidget *active_view, gint col);

extern GList *file_clipboard;

#ifdef __cplusplus
}
#endif

#endif /* _FILEOPS_H */