diff options
author | René Schümann <white06tiger@gmail.com> | 2014-04-03 02:11:56 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-04-03 02:11:56 +0000 |
commit | b87686ce677be209f6923fc8b2f11edcff7f98a0 (patch) | |
tree | 38654f368df08bc0ad5efe079bf71343d6c4ccb0 /plugins/SendScreenshotPlus/src/CSendImageShack.h | |
parent | 6d57c5a6472a17864d85b5923a4c4dfcf3606df3 (diff) |
SendSS
* changed LPSTR to char* and LPTSTR to TCHAR*
* GetFileName split into A and W functions (Utils.cpp)
git-svn-id: http://svn.miranda-ng.org/main/trunk@8834 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/src/CSendImageShack.h')
-rw-r--r-- | plugins/SendScreenshotPlus/src/CSendImageShack.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSendImageShack.h b/plugins/SendScreenshotPlus/src/CSendImageShack.h index b8f3623d61..bf8b6afbbb 100644 --- a/plugins/SendScreenshotPlus/src/CSendImageShack.h +++ b/plugins/SendScreenshotPlus/src/CSendImageShack.h @@ -38,18 +38,18 @@ class CSendImageShack : public CSend { void Send(); void SendSync(bool Sync) {m_SendSync = Sync;}; - LPSTR GetURL(){return m_Url;}; - LPSTR GetError(){return mir_t2a(m_ErrorMsg);}; + char* GetURL(){return m_Url;}; + char* GetError(){return mir_t2a(m_ErrorMsg);}; protected: - LPSTR m_pszFileName; + char* m_pszFileName; NETLIBHTTPREQUEST m_nlhr; NETLIBHTTPREQUEST* m_nlreply; char m_nlheader_ContentType[64]; - LPSTR m_Url; + char* m_Url; void AppendToData(const char *pszVal); //append to netlib DATA - LPSTR m_pszContentType; //hold mimeType (does not need free) + char* m_pszContentType; //hold mimeType (does not need free) void GetContentType(); //get mimeType const char * GetTagContent(char * pszSource, const char * pszTagStart, const char * pszTagEnd); |