~ubuntu-branches/debian/stretch/vifm/stretch

« back to all changes in this revision

Viewing changes to src/fileops.h

  • Committer: Bazaar Package Importer
  • Author(s): Edelhard Becker
  • Date: 2005-08-09 15:15:09 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050809151509-0csu5v00b8gfvypy
Tags: 0.3-2
ACK NMU, thanks Blars (Closes: #320118)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include"ui.h"
22
22
 
 
23
#define FILE_CHANGE 1
 
24
#define FILE_NAME 2
 
25
#define FILE_OWNER 4
 
26
#define FILE_GROUP 6
 
27
#define FILE_PERMISSIONS 8
 
28
 
23
29
typedef struct
24
30
{
25
31
        char *dir;
34
40
void yank_selected_files(FileView *view);
35
41
int pipe_and_capture_errors(char *command);
36
42
int file_exec(char *command);
 
43
void show_change_window(FileView *view, int type);
37
44
 
38
45
#endif