diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-04 14:14:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-04 14:14:01 +0000 |
commit | dcf04c9a2c3351896897ac22b797e0d6d3e1145f (patch) | |
tree | 4a8f6609ca589eac5896d25aa03220ed3bf9c670 /src | |
parent | a83f744f5fdb10989a27e7f27522048bc756b61e (diff) |
MS_NETLIB_URLENCODE isn't used anyway, die the annoying clutch
git-svn-id: http://svn.miranda-ng.org/main/trunk@4882 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/netlib/netlib.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/modules/netlib/netlib.cpp b/src/modules/netlib/netlib.cpp index b7a3bc3c2d..701c61cb19 100644 --- a/src/modules/netlib/netlib.cpp +++ b/src/modules/netlib/netlib.cpp @@ -409,21 +409,6 @@ INT_PTR NetlibShutdown(WPARAM wParam, LPARAM) return 0;
}
-INT_PTR NetlibHttpUrlEncode(WPARAM, LPARAM lParam)
-{
- if (lParam == NULL) {
- SetLastError(ERROR_INVALID_PARAMETER);
- return NULL;
- }
-
- char *p = mir_urlEncode((LPCSTR)lParam);
- if (p == NULL) {
- SetLastError(ERROR_OUTOFMEMORY);
- return NULL;
- }
- return (INT_PTR)p;
-}
-
void UnloadNetlibModule(void)
{
if ( !bModuleInitialized) return;
@@ -528,7 +513,6 @@ int LoadNetlibModule(void) CreateServiceFunction(MS_NETLIB_SETHTTPPROXYINFO, NetlibHttpGatewaySetInfo);
CreateServiceFunction(MS_NETLIB_SETSTICKYHEADERS, NetlibHttpSetSticky);
CreateServiceFunction(MS_NETLIB_GETSOCKET, NetlibGetSocket);
- CreateServiceFunction(MS_NETLIB_URLENCODE, NetlibHttpUrlEncode);
CreateServiceFunction(MS_NETLIB_SENDHTTPREQUEST, NetlibHttpSendRequest);
CreateServiceFunction(MS_NETLIB_RECVHTTPHEADERS, NetlibHttpRecvHeaders);
CreateServiceFunction(MS_NETLIB_FREEHTTPREQUESTSTRUCT, NetlibHttpFreeRequestStruct);
|