Sprinkle some constness on CResourceDirectoryEntry
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6606 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
fed52fac19
commit
757d16f937
2 changed files with 18 additions and 18 deletions
|
@ -233,16 +233,16 @@ public:
|
|||
CResourceDirectoryEntry(const WINWCHAR* szName, CResourceDataEntry* rdeData);
|
||||
virtual ~CResourceDirectoryEntry();
|
||||
|
||||
bool HasName();
|
||||
WINWCHAR* GetName();
|
||||
int GetNameLength();
|
||||
bool HasName() const;
|
||||
const WINWCHAR* GetName() const;
|
||||
int GetNameLength() const;
|
||||
|
||||
WORD GetId();
|
||||
WORD GetId() const;
|
||||
|
||||
bool IsDataDirectory();
|
||||
CResourceDirectory* GetSubDirectory();
|
||||
bool IsDataDirectory() const;
|
||||
CResourceDirectory* GetSubDirectory() const;
|
||||
|
||||
CResourceDataEntry* GetDataEntry();
|
||||
CResourceDataEntry* GetDataEntry() const;
|
||||
|
||||
ULONG_PTR m_ulWrittenAt;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue