diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-06-14 22:35:16 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-06-14 22:35:16 +0000 |
commit | 3942df7207beeb9f2fc08a6deb1d375badbe066a (patch) | |
tree | 10cff5e3f6b525410e00207d05578b30025c7d9f /plugins/HTTPServer/src/IndexCreation.h | |
parent | c5fb4140e75fe56e24caa98fda1f13b14955efe9 (diff) |
plugin unicoded
git-svn-id: http://svn.miranda-ng.org/main/trunk@9488 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HTTPServer/src/IndexCreation.h')
-rw-r--r-- | plugins/HTTPServer/src/IndexCreation.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/HTTPServer/src/IndexCreation.h b/plugins/HTTPServer/src/IndexCreation.h index c3892c4308..5876595a46 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 char szIndexHTMLTemplateFile[] = "HTTPServerIndex.html";
+const TCHAR szIndexHTMLTemplateFile[] = _T("HTTPServerIndex.html");
enum eIndexCreationMode {
INDEX_CREATION_DISABLE = 0,
@@ -34,8 +34,8 @@ enum eIndexCreationMode { extern eIndexCreationMode indexCreationMode;
-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);
+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);
void FreeIndexHTMLTemplate();
bool LoadIndexHTMLTemplate();
|