~ubuntu-branches/ubuntu/lucid/unrar-nonfree/lucid

« back to all changes in this revision

Viewing changes to encname.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Martin Meredith
  • Date: 2009-06-06 17:46:05 UTC
  • mfrom: (1.1.11 upstream) (5.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090606174605-h4ciqxlpy39jmjx0
Tags: 1:3.9.3-1
* New upstream release
* Updated Copyright file (Closes: #531432)

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
    byte *EncName;
10
10
    byte Flags;
11
 
    int FlagBits;
12
 
    int FlagsPos;
13
 
    int DestSize;
 
11
    uint FlagBits;
 
12
    size_t FlagsPos;
 
13
    size_t DestSize;
14
14
  public:
15
15
    EncodeFileName();
16
 
    int Encode(char *Name,wchar *NameW,byte *EncName);
17
 
    void Decode(char *Name,byte *EncName,int EncSize,wchar *NameW,int MaxDecSize);
 
16
    size_t Encode(char *Name,wchar *NameW,byte *EncName);
 
17
    void Decode(char *Name,byte *EncName,size_t EncSize,wchar *NameW,size_t MaxDecSize);
18
18
};
19
19
 
20
20
#endif