mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-04 05:25:00 +00:00
this will allow us to diff against newer version of unrarsrc if we wish to update our port
32 lines
766 B
C++
32 lines
766 B
C++
#ifndef _RAR_STRLIST_
|
|
#define _RAR_STRLIST_
|
|
|
|
class StringList
|
|
{
|
|
private:
|
|
Array<wchar> StringData;
|
|
size_t CurPos;
|
|
|
|
uint StringsCount;
|
|
|
|
size_t SaveCurPos[16],SavePosNumber;
|
|
public:
|
|
StringList();
|
|
void Reset();
|
|
void AddStringA(const char *Str);
|
|
void AddString(const wchar *Str);
|
|
bool GetStringA(char *Str,size_t MaxLength);
|
|
bool GetString(wchar *Str,size_t MaxLength);
|
|
bool GetString(wchar *Str,size_t MaxLength,int StringNum);
|
|
wchar* GetString();
|
|
bool GetString(wchar **Str);
|
|
void Rewind();
|
|
uint ItemsCount() {return StringsCount;};
|
|
size_t GetCharCount() {return StringData.Size();}
|
|
bool Search(const wchar *Str,bool CaseSensitive);
|
|
void SavePosition();
|
|
void RestorePosition();
|
|
};
|
|
|
|
#endif
|