summaryrefslogtreecommitdiff
path: root/plugins/HTTPServer/src/IndexCreation.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2014-06-19 20:03:37 +0000
committerKirill Volinsky <mataes2007@gmail.com>2014-06-19 20:03:37 +0000
commitee8b6d3e7acadbd3bd87a1c3cfb06e7b7af88c64 (patch)
tree709e1c4b33d035e228091cf8bc3edbd6e2159a53 /plugins/HTTPServer/src/IndexCreation.h
parent4b546fcda174b787db34d6c95f122f21fb6c99b3 (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/IndexCreation.h')
-rw-r--r--plugins/HTTPServer/src/IndexCreation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/HTTPServer/src/IndexCreation.h b/plugins/HTTPServer/src/IndexCreation.h
index 5876595a46..c3892c4308 100644
--- a/plugins/HTTPServer/src/IndexCreation.h
+++ b/plugins/HTTPServer/src/IndexCreation.h
@@ -23,7 +23,7 @@
#include "m_HTTPServer.h"
#include "FileShareNode.h"
-const TCHAR szIndexHTMLTemplateFile[] = _T("HTTPServerIndex.html");
+const char szIndexHTMLTemplateFile[] = "HTTPServerIndex.html";
enum eIndexCreationMode {
INDEX_CREATION_DISABLE = 0,
@@ -34,8 +34,8 @@ enum eIndexCreationMode {
extern eIndexCreationMode indexCreationMode;
-bool bCreateIndexXML(const TCHAR *pszRealPath, const TCHAR *pszIndexPath, const TCHAR *pszSrvPath, DWORD dwRemoteIP);
-bool bCreateIndexHTML(const TCHAR *pszRealPath, const TCHAR *pszIndexPath, const TCHAR *pszSrvPath, DWORD dwRemoteIP);
+bool bCreateIndexXML(const char * pszRealPath, const char * pszIndexPath, const char * pszSrvPath, DWORD dwRemoteIP);
+bool bCreateIndexHTML(const char * pszRealPath, const char * pszIndexPath, const char * pszSrvPath, DWORD dwRemoteIP);
void FreeIndexHTMLTemplate();
bool LoadIndexHTMLTemplate();