Making things easier for the MSC compiler.

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@380 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez
2008-05-22 17:24:56 +00:00
parent 094cedc807
commit 90f52baa61
12 changed files with 12 additions and 12 deletions

View File

@@ -9,7 +9,7 @@ extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */
typedef struct {} UpnpActionComplete; typedef struct s_UpnpActionComplete UpnpActionComplete;
#include "UpnpString.h" #include "UpnpString.h"

View File

@@ -10,7 +10,7 @@ extern "C" {
/** Returned as part of a \b UPNP_CONTROL_ACTION_COMPLETE callback. */ /** Returned as part of a \b UPNP_CONTROL_ACTION_COMPLETE callback. */
typedef struct {} UpnpActionRequest; typedef struct s_UpnpActionRequest UpnpActionRequest;
#include "ixml.h" // for IXML_Document #include "ixml.h" // for IXML_Document

View File

@@ -10,7 +10,7 @@ extern "C" {
/** Returned in a \b UPNP_DISCOVERY_RESULT callback. */ /** Returned in a \b UPNP_DISCOVERY_RESULT callback. */
typedef struct {} UpnpDiscovery; typedef struct s_UpnpDiscovery UpnpDiscovery;
#include "UpnpString.h" #include "UpnpString.h"

View File

@@ -10,7 +10,7 @@ extern "C" {
/** Returned along with a \b UPNP_EVENT_RECEIVED callback. */ /** Returned along with a \b UPNP_EVENT_RECEIVED callback. */
typedef struct {} UpnpEvent; typedef struct s_UpnpEvent UpnpEvent;
#include "ixml.h" // for IXML_Document #include "ixml.h" // for IXML_Document

View File

@@ -11,7 +11,7 @@ extern "C" {
/** Returned along with a \b UPNP_EVENT_SUBSCRIBE_COMPLETE or /** Returned along with a \b UPNP_EVENT_SUBSCRIBE_COMPLETE or
* \b UPNP_EVENT_UNSUBSCRIBE_COMPLETE callback. */ * \b UPNP_EVENT_UNSUBSCRIBE_COMPLETE callback. */
typedef struct {} UpnpEventSubscribe; typedef struct s_UpnpEventSubscribe UpnpEventSubscribe;
#include "UpnpString.h" #include "UpnpString.h"

View File

@@ -10,7 +10,7 @@ extern "C" {
/** Detailed description of this class should go here */ /** Detailed description of this class should go here */
typedef struct {} UpnpFileInfo; typedef struct s_UpnpFileInfo UpnpFileInfo;
#include "ixml.h" // for DOMString #include "ixml.h" // for DOMString

View File

@@ -11,7 +11,7 @@ extern "C" {
/** Represents the reply for the current value of a state variable in an /** Represents the reply for the current value of a state variable in an
asynchronous call. */ asynchronous call. */
typedef struct {} UpnpStateVarComplete; typedef struct s_UpnpStateVarComplete UpnpStateVarComplete;
#include "UpnpString.h" #include "UpnpString.h"

View File

@@ -11,7 +11,7 @@ extern "C" {
/** Represents the request for current value of a state variable in a service /** Represents the request for current value of a state variable in a service
* state table. */ * state table. */
typedef struct {} UpnpStateVarRequest; typedef struct s_UpnpStateVarRequest UpnpStateVarRequest;
#include "UpnpString.h" #include "UpnpString.h"

View File

@@ -10,7 +10,7 @@ extern "C" {
/** Returned along with a \b UPNP_EVENT_SUBSCRIPTION_REQUEST callback. */ /** Returned along with a \b UPNP_EVENT_SUBSCRIPTION_REQUEST callback. */
typedef struct {} UpnpSubscriptionRequest; typedef struct s_UpnpSubscriptionRequest UpnpSubscriptionRequest;
#include "UpnpString.h" #include "UpnpString.h"

View File

@@ -29,7 +29,7 @@ extern "C" {
/*! /*!
* \brief Type of the string objects inside libupnp. * \brief Type of the string objects inside libupnp.
*/ */
typedef struct {} UpnpString; typedef struct s_UpnpString UpnpString;
/*! /*!

View File

@@ -58,7 +58,7 @@ extern TimerThread gTimerThread;
#ifdef INCLUDE_CLIENT_APIS #ifdef INCLUDE_CLIENT_APIS
typedef struct {} ClientSubscription; typedef struct s_ClientSubscription ClientSubscription;
/** Constructor */ /** Constructor */

View File

@@ -5,7 +5,7 @@
/** Structure to contain Discovery response */ /** Structure to contain Discovery response */
typedef struct {} SSDPResultData; typedef struct s_SSDPResultData SSDPResultData;
#include "Discovery.h" /* for UpnpDiscovery */ #include "Discovery.h" /* for UpnpDiscovery */