mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 07:36:21 +00:00
[RAPPS] move icon to a field in .txt file (#2941)
* [RAPPS] move icon to a field in .txt file * [RAPPS] add function PathAppendNoDirEscapeW, apply it.
This commit is contained in:
parent
e636373016
commit
4482d0f455
5 changed files with 93 additions and 16 deletions
|
@ -52,6 +52,7 @@ struct CAvailableApplicationInfo
|
|||
ATL::CStringW m_szUrlDownload;
|
||||
ATL::CSimpleArray<LCID> m_LanguageLCIDs;
|
||||
ATL::CSimpleArray<ATL::CStringW> m_szScrnshotLocation;
|
||||
ATL::CStringW m_szIconLocation;
|
||||
|
||||
ULONG m_SizeBytes;
|
||||
|
||||
|
@ -75,6 +76,7 @@ struct CAvailableApplicationInfo
|
|||
BOOL HasInstalledVersion() const;
|
||||
BOOL HasUpdate() const;
|
||||
BOOL RetrieveScrnshot(UINT Index, ATL::CStringW& ScrnshotLocation) const;
|
||||
BOOL RetrieveIcon(ATL::CStringW& IconLocation) const;
|
||||
// Set a timestamp
|
||||
VOID SetLastWriteTime(FILETIME* ftTime);
|
||||
|
||||
|
|
|
@ -44,3 +44,5 @@ public:
|
|||
BOOL GetString(const ATL::CStringW& KeyName, ATL::CStringW& ResultString);
|
||||
BOOL GetInt(const ATL::CStringW& KeyName, INT& iResult);
|
||||
};
|
||||
|
||||
BOOL PathAppendNoDirEscapeW(LPWSTR pszPath, LPCWSTR pszMore);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue