summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-02-28 05:48:26 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-02-28 05:48:26 +0000
commit62c1d09bb2c31ab1da35f6ae4e3d0f8f1d887b69 (patch)
treee3e2cc04017a82bbcce21f37f1b9d3409f26c758 /plugins
parenta61c03324f14484493454333a761a6cebd357d51 (diff)
header update
git-svn-id: http://svn.miranda-ng.org/main/trunk@3803 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ExternalAPI/m_HTTPServer.h20
1 files changed, 4 insertions, 16 deletions
diff --git a/plugins/ExternalAPI/m_HTTPServer.h b/plugins/ExternalAPI/m_HTTPServer.h
index a8fa139bfb..6cb6549ee0 100644
--- a/plugins/ExternalAPI/m_HTTPServer.h
+++ b/plugins/ExternalAPI/m_HTTPServer.h
@@ -44,7 +44,7 @@ typedef struct {
/// Service MS_HTTP_ADD_CHANGE_REMOVE ///
/////////////////////////////////////////////
//
-// wParam = 0
+// wParam = (WPARAM)0
// lParam = (LPARAM)LPSTFileShareInfo;
// Server path is the key when working with FileShareInfo.
// Two files can not be shared with the same "Server path" in the HTTP server.
@@ -62,7 +62,7 @@ typedef struct {
////// Service MS_HTTP_GET_SHARE //////
/////////////////////////////////////////////
//
-// wParam = 0;
+// wParam = (WPARAM)0;
// lParam = (LPARAM)LPSTFileShareInfo;
// Returns the information for a share
// Server path must be set the the share you wish information for.
@@ -78,7 +78,7 @@ typedef struct {
/////////////////////////////////////////////
//
// wParam = (WPARAM)boolean(true/false);
-// lParam = 0;
+// lParam = (LPARAM)0;
// Toggles the HTTP server state if wParam is FALSE
// Force enable HTTP server if wParam is TRUE
// returns 0 on success, nonzero on failure
@@ -89,7 +89,7 @@ typedef struct {
//// Service MS_HTTP_GET_ALL_SHARES /////
/////////////////////////////////////////////
//
-// wParam = 0;
+// wParam = (WPARAM)0;
// lParam = (LPARAM)&LPSTFileShareInfo;
// Returns an array of all currently shared files in the HTTP Server
// LPSTFileShareInfo points to the first share.
@@ -100,18 +100,6 @@ typedef struct {
#define MS_HTTP_GET_ALL_SHARES "HTTPServer/GetAllShares"
-/////////////////////////////////////////////
-//// Service MS_HTTP_GET_LINK /////
-/////////////////////////////////////////////
-//
-// wParam = (char*)pszSrvPath;
-// lParam = 0
-// Return URL Link on success, 0 on failure
-// Return pointer must be mir_free by caller
-//
-// Return the URL link to the pszSrvPath
-
-#define MS_HTTP_GET_LINK "HTTPServer/GetLink"
#endif