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/CSendHTTPServer.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/CSendHTTPServer.h')
-rw-r--r-- | plugins/SendScreenshotPlus/src/CSendHTTPServer.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSendHTTPServer.h b/plugins/SendScreenshotPlus/src/CSendHTTPServer.h index 85ad17c8d6..782ec1c14a 100644 --- a/plugins/SendScreenshotPlus/src/CSendHTTPServer.h +++ b/plugins/SendScreenshotPlus/src/CSendHTTPServer.h @@ -39,11 +39,11 @@ class CSendHTTPServer : public CSend { void Send(); protected: - LPSTR m_pszFileName; - LPSTR m_URL; + char* m_pszFileName; + char* m_URL; STFileShareInfo m_fsi; - LPSTR m_fsi_pszSrvPath; - LPSTR m_fsi_pszRealPath; + char* m_fsi_pszSrvPath; + char* m_fsi_pszRealPath; void SendThread(); static void SendThreadWrapper(void * Obj); @@ -51,7 +51,6 @@ class CSendHTTPServer : public CSend { static CContactMapping _CContactMapping; // static INT_PTR MyCallService(const char *name, WPARAM wParam, LPARAM lParam); - }; //--------------------------------------------------------------------------- |