From b87686ce677be209f6923fc8b2f11edcff7f98a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Sch=C3=BCmann?= Date: Thu, 3 Apr 2014 02:11:56 +0000 Subject: 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 --- plugins/SendScreenshotPlus/src/CSendImageShack.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/SendScreenshotPlus/src/CSendImageShack.h') 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); -- cgit v1.2.3