diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-06-15 06:50:29 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-06-15 06:50:29 +0000 |
commit | 56483015550c6d1fc88acf02c5dd4cc504927aad (patch) | |
tree | 6880059ac493d7cbf39a78429997fb0b1e2eea99 /plugins/ExternalAPI | |
parent | 6e014eeeceb47cdcf7b40de7383b7177fe6f6c88 (diff) |
compilation fix (thanks person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9491 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI')
-rw-r--r-- | plugins/ExternalAPI/m_HTTPServer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ExternalAPI/m_HTTPServer.h b/plugins/ExternalAPI/m_HTTPServer.h index c8de071838..b9dff5a48a 100644 --- a/plugins/ExternalAPI/m_HTTPServer.h +++ b/plugins/ExternalAPI/m_HTTPServer.h @@ -25,9 +25,9 @@ typedef struct {
DWORD lStructSize; // Set to sizeof(STFileShareInfo)
- char * pszSrvPath; // Server path
+ TCHAR * pszSrvPath; // Server path
DWORD dwMaxSrvPath; // Buffer allocated for Server path only used when information is requested from HTTP server.
- char * pszRealPath; // Real path can be relative or complete
+ TCHAR * pszRealPath; // Real path can be relative or complete
DWORD dwMaxRealPath;// Buffer allocated for Real path only used when information is requested from HTTP server.
DWORD dwAllowedIP; // The IP address which is allowed to access this share
DWORD dwAllowedMask; // A mask which is applied to IP address to allow other IP addresses
|