Removing the useless, unused and undocumented function UpnpFree().

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@371 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez 2008-05-05 23:26:37 +00:00
parent 4e6102d1c2
commit e56a9d68a3
2 changed files with 0 additions and 23 deletions

View File

@ -2628,10 +2628,6 @@ EXPORT_SPEC int UpnpRemoveVirtualDir(
*/
EXPORT_SPEC void UpnpRemoveAllVirtualDirs();
EXPORT_SPEC void UpnpFree(
/*! The item to free. */
IN void *item);
/* @} Web Server API */

View File

@ -4735,25 +4735,6 @@ int UpnpVirtualDir_set_CloseCallback(VDCallback_Close callback)
}
/**************************************************************************
* Function: UpnpFree
*
* Parameters:
* IN void *item:The item to free.
*
* Description:
* This function free the memory allocated by tbe UPnP library
*
* Return Values: void
***************************************************************************/
void
UpnpFree( IN void *item )
{
if( item )
free( item );
}
/**************************************************************************
* Function: UpnpSetContentLength
* OBSOLETE METHOD: use UpnpSetMaxContentLength() instead.