"Fossies" - the Fresh Open Source Software Archive 
Member "unrar/extinfo.hpp" (4 May 2022, 767 Bytes) of package /linux/misc/unrarsrc-6.1.7.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "extinfo.hpp" see the
Fossies "Dox" file reference documentation.
1 #ifndef _RAR_EXTINFO_
2 #define _RAR_EXTINFO_
3
4 bool IsRelativeSymlinkSafe(CommandData *Cmd,const wchar *SrcName,const wchar *PrepSrcName,const wchar *TargetName);
5 bool ExtractSymlink(CommandData *Cmd,ComprDataIO &DataIO,Archive &Arc,const wchar *LinkName);
6 #ifdef _UNIX
7 void SetUnixOwner(Archive &Arc,const wchar *FileName);
8 #endif
9
10 bool ExtractHardlink(CommandData *Cmd,wchar *NameNew,wchar *NameExisting,size_t NameExistingSize);
11
12 void GetStreamNameNTFS(Archive &Arc,wchar *StreamName,size_t MaxSize);
13
14 #ifdef _WIN_ALL
15 bool SetPrivilege(LPCTSTR PrivName);
16 #endif
17
18 void SetExtraInfo20(CommandData *Cmd,Archive &Arc,wchar *Name);
19 void SetExtraInfo(CommandData *Cmd,Archive &Arc,wchar *Name);
20 void SetFileHeaderExtra(CommandData *Cmd,Archive &Arc,wchar *Name);
21
22
23 #endif