Deleted Added
full compact
file_io.h (292588) file_io.h (312518)
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file file_io.h
4/// \brief I/O types and functions
5//
6// Author: Lasse Collin
7//
8// This file has been put into the public domain.

--- 66 unchanged lines hidden (view full) ---

75extern void io_write_to_user_abort_pipe(void);
76#endif
77
78
79/// \brief Disable creation of sparse files when decompressing
80extern void io_no_sparse(void);
81
82
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file file_io.h
4/// \brief I/O types and functions
5//
6// Author: Lasse Collin
7//
8// This file has been put into the public domain.

--- 66 unchanged lines hidden (view full) ---

75extern void io_write_to_user_abort_pipe(void);
76#endif
77
78
79/// \brief Disable creation of sparse files when decompressing
80extern void io_no_sparse(void);
81
82
83#ifdef ENABLE_SANDBOX
84/// \brief main() calls this if conditions for sandboxing have been met.
85extern void io_allow_sandbox(void);
86#endif
87
88
83/// \brief Open the source file
84extern file_pair *io_open_src(const char *src_name);
85
86
87/// \brief Open the destination file
88extern bool io_open_dest(file_pair *pair);
89
90

--- 60 unchanged lines hidden ---
89/// \brief Open the source file
90extern file_pair *io_open_src(const char *src_name);
91
92
93/// \brief Open the destination file
94extern bool io_open_dest(file_pair *pair);
95
96

--- 60 unchanged lines hidden ---