1
1
mc/src/file.h

48 строки
1.7 KiB
C
Исходник Обычный вид История

1998-02-27 04:54:42 +00:00
#ifndef __FILE_H
#define __FILE_H
#include "fileopctx.h"
#include "background.h"
1998-02-27 04:54:42 +00:00
extern int know_not_what_am_i_doing;
struct link;
int copy_file_file (FileOpContext *ctx, char *s, char *d, int ask_overwrite,
off_t *progress_count, double *progress_bytes,
int is_toplevel_file);
int move_file_file (FileOpContext *ctx, char *s, char *d,
off_t *progress_count, double *progress_bytes);
int move_dir_dir (FileOpContext *ctx, char *s, char *d,
off_t *progress_count, double *progress_bytes);
int copy_dir_dir (FileOpContext *ctx, char *s, char *d, int toplevel, int move_over,
int delete, struct link *parent_dirs,
off_t *progress_count, double *progress_bytes);
int erase_dir (FileOpContext *ctx, char *s, off_t *progress_count, double *progress_bytes);
int erase_file (FileOpContext *ctx, char *s, off_t *progress_count, double *progress_bytes,
int is_toplevel_file);
int erase_dir_iff_empty (FileOpContext *ctx, char *s);
1998-02-27 04:54:42 +00:00
int panel_operate (void *source_panel, FileOperation op,
char *thedefault, int ask_user);
char *file_mask_dialog (FileOpContext *ctx, FileOperation operation, char *text, char *def_text,
int only_one, int *do_background);
extern int file_op_compute_totals;
1998-02-27 04:54:42 +00:00
/* Error reporting routines */
/* Report error with one file */
int file_error (char *format, char *file);
/* Report error with two files */
int files_error (char *format, char *file1, char *file2);
/* Query routines */
1998-02-27 04:54:42 +00:00
extern int background_wait;
int is_wildcarded (char *p);
void compute_dir_size (char *dirname, off_t *ret_marked, double *ret_total);
#endif /* !__FILE_H */