diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-06-19 20:03:37 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-06-19 20:03:37 +0000 |
commit | ee8b6d3e7acadbd3bd87a1c3cfb06e7b7af88c64 (patch) | |
tree | 709e1c4b33d035e228091cf8bc3edbd6e2159a53 /plugins/HTTPServer/src/FileShareNode.h | |
parent | 4b546fcda174b787db34d6c95f122f21fb6c99b3 (diff) |
revert unicode
git-svn-id: http://svn.miranda-ng.org/main/trunk@9543 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HTTPServer/src/FileShareNode.h')
-rw-r--r-- | plugins/HTTPServer/src/FileShareNode.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/HTTPServer/src/FileShareNode.h b/plugins/HTTPServer/src/FileShareNode.h index 304d463eb3..706a31f093 100644 --- a/plugins/HTTPServer/src/FileShareNode.h +++ b/plugins/HTTPServer/src/FileShareNode.h @@ -29,10 +29,10 @@ public: in_addr stAddr;
DWORD dwCurrentDL;
DWORD dwTotalSize;
- TCHAR szCurrentDLSrvPath[MAX_PATH];
+ char szCurrentDLSrvPath[MAX_PATH];
virtual DWORD dwGetDownloadSpeed();
virtual bool bCloseTransfers() = NULL;
- virtual const TCHAR * pszCustomInfo() = NULL;
+ virtual const char * pszCustomInfo() = NULL;
void CloseSocket();
protected:
HANDLE hConnection;
@@ -41,11 +41,11 @@ protected: class CLFileShareNode {
public://, DWORD dwAllowedIP, DWORD dwAllowedMask, int nMaxDownloads );
- CLFileShareNode(TCHAR *pszSrvPath, TCHAR *pszRealPath);
- CLFileShareNode(STFileShareInfo *pstInfo);
+ CLFileShareNode(char * pszSrvPath, char * pszRealPath);
+ CLFileShareNode(STFileShareInfo * pstInfo);
~CLFileShareNode();
- bool bSetPaths(TCHAR *pszSrvPath, TCHAR *pszRealPath);
- bool bSetInfo(STFileShareInfo *pstInfo);
+ bool bSetPaths(char * pszSrvPath, char * pszRealPath);
+ bool bSetInfo(STFileShareInfo * pstInfo);
int nGetSrvPathLen() {
return st.dwMaxSrvPath -1;
}
@@ -54,7 +54,7 @@ public://, DWORD dwAllowedIP, DWORD dwAllowedMask, int nMaxDownloads ); }
STFileShareInfo st;
- TCHAR *pszOrigRealPath;
+ char *pszOrigRealPath;
CLFileShareNode * pclNext;
//CLHttpUser * pclAddHttpUser( HANDLE hConnection, in_addr stAddr );
//bool bRemoveHttpUser( CLHttpUser * pclUser );
|