* Removing the Dbg_Level, InitLog, SetLogFileNames and CloseLog

defines. These were just aliases, no reason to keep them.
* Changed the comments of the include files that expose the UPnP API
to use only C89 comments and no C99 comments.



git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@198 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez
2007-05-25 15:02:12 +00:00
parent 80517f26a6
commit 9bc187d4c6
17 changed files with 711 additions and 713 deletions

View File

@@ -253,7 +253,7 @@ service_info * FindServiceControlURLPath( service_table *table,
*
* Parameters :
* service_info *service ;Service whose information is to be printed
* Dbg_Level level ; Debug level specified to the print function
* Upnp_LogLevel level ; Debug level specified to the print function
* Dbg_Module module ; Debug module specified to the print function
*
* Description : For debugging purposes prints information from the
@@ -266,12 +266,12 @@ service_info * FindServiceControlURLPath( service_table *table,
#ifdef DEBUG
void printService(
service_info *service,
Dbg_Level level,
Upnp_LogLevel level,
Dbg_Module module);
#else
static UPNP_INLINE void printService(
service_info *service,
Dbg_Level level,
Upnp_LogLevel level,
Dbg_Module module) {}
#endif
@@ -280,7 +280,7 @@ static UPNP_INLINE void printService(
*
* Parameters :
* service_info *service ; Service whose information is to be printed
* Dbg_Level level ; Debug level specified to the print function
* Upnp_LogLevel level ; Debug level specified to the print function
* Dbg_Module module ; Debug module specified to the print function
*
* Description : For debugging purposes prints information of each
@@ -293,12 +293,12 @@ static UPNP_INLINE void printService(
#ifdef DEBUG
void printServiceList(
service_info *service,
Dbg_Level level,
Upnp_LogLevel level,
Dbg_Module module);
#else
static UPNP_INLINE void printServiceList(
service_info *service,
Dbg_Level level,
Upnp_LogLevel level,
Dbg_Module module) {}
#endif
@@ -307,7 +307,7 @@ static UPNP_INLINE void printServiceList(
*
* Parameters :
* service_table * table ; Service table to be printed
* Dbg_Level level ; Debug level specified to the print function
* Upnp_LogLevel level ; Debug level specified to the print function
* Dbg_Module module ; Debug module specified to the print function
*
* Description : For debugging purposes prints the URL base of the table
@@ -321,12 +321,12 @@ static UPNP_INLINE void printServiceList(
#ifdef DEBUG
void printServiceTable(
service_table *table,
Dbg_Level level,
Upnp_LogLevel level,
Dbg_Module module);
#else
static UPNP_INLINE void printServiceTable(
service_table *table,
Dbg_Level level,
Upnp_LogLevel level,
Dbg_Module module) {}
#endif