~ubuntu-branches/ubuntu/trusty/unrar-nonfree/trusty-proposed

« back to all changes in this revision

Viewing changes to pathfn.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Chris Anderson
  • Date: 2004-12-01 02:22:56 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041201022256-c3pj5nufp88tdyw6
Tags: 3.4.3-1
* New upstream release 
* Applied Ulf Harnhammar's patch to solve overflows when $HOME was too
  large (closes: #280263).

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
void RemoveNameFromPath(char *Path);
25
25
void RemoveNameFromPath(wchar *Path);
26
26
bool EnumConfigPaths(char *Path,int Number);
27
 
void GetConfigName(const char *Name,char *FullName);
 
27
void GetConfigName(const char *Name,char *FullName,bool CheckExist);
28
28
char* GetVolNumPart(char *ArcName);
29
29
void NextVolumeName(char *ArcName,bool OldNumbering);
30
30
bool IsNameUsable(const char *Name);
38
38
char* VolNameToFirstName(const char *VolName,char *FirstName,bool NewNumbering);
39
39
 
40
40
 
 
41
wchar* GetWideName(const char *Name,const wchar *NameW,wchar *DestW);
41
42
 
42
43
inline char* GetOutputName(const char *Name) {return((char *)Name);};
43
44