/*********************************************************************** $Id: copyf.h 1712 2014-02-09 22:32:51Z gyoung $ <> Copyright (c) 1993-98 M. Kimes Copyright (c) 2001, 2014 Steven H. Levine 05 Sep 08 JBS Ticket 187: Refactor FM3DLL.H 08 Mar 09 GKY Removed variable aurguments from docopyf and unlinkf (not used) 04 Aug 12 GKY Changes to use Unlock to unlock files if Unlock.exe is in path both from menu/toolbar and as part of copy, move and delete operations 04 Aug 12 GKY Changes to allow copy and move over readonly files with a warning dialog; also added a warning dialog for delete of readonly files 10 Mar 13 GKY Improvrd readonly check on delete to allow cancel and don't ask again options 09 Feb 14 GKY Modified wipeallf to allow suppression of the readonly warning on delete of temporary files ***********************************************************************/ #if !defined(COPYF_H) #define COPYF_H BOOL AdjustWildcardName(CHAR * oldname, CHAR * newname); char *MakeTempName(char *buffer, char *temproot, int type); BOOL WriteLongName(CHAR * filename, CHAR * longname); APIRET docopyf(INT type, CHAR * oldname, CHAR * newname); INT make_deleteable(CHAR * filename, INT error, BOOL Dontcheckreadonly); INT unlinkf(CHAR * string); INT wipeallf(BOOL ignorereadonly, CHAR * string, ...); #endif // COPYF_H