mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
395 B
14 lines
395 B
#ifndef _RAR_FILECREATE_
|
|
#define _RAR_FILECREATE_
|
|
|
|
bool FileCreate(CommandData *Cmd,File *NewFile,wchar *Name,size_t MaxNameSize,
|
|
bool *UserReject,int64 FileSize=INT64NDF,
|
|
RarTime *FileTime=NULL,bool WriteOnly=false);
|
|
|
|
bool GetAutoRenamedName(wchar *Name,size_t MaxNameSize);
|
|
|
|
#if defined(_WIN_ALL)
|
|
bool UpdateExistingShortName(const wchar *Name);
|
|
#endif
|
|
|
|
#endif
|
|
|