Welcome to mirror list, hosted at ThFree Co, Russian Federation.

filcreat.hpp « Original « Rar29 « Compress « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa1fddd0e7063491b180dec0e997f31a001e2201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _RAR_FILECREATE_
#define _RAR_FILECREATE_

bool FileCreate(RAROptions *Cmd,File *NewFile,char *Name,wchar *NameW,
                OVERWRITE_MODE Mode,bool *UserReject,Int64 FileSize=INT64ERR,
                uint FileTime=0);

#if defined(_WIN_32) && !defined(_WIN_CE)
bool UpdateExistingShortName(char *Name,wchar *NameW);
#endif

#endif