mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 16:07:09 -06:00
13 lines
347 B
C++
Executable File
13 lines
347 B
C++
Executable File
#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
|