summaryrefslogtreecommitdiff
path: root/upnpcomponents/upnpservice.cpp
diff options
context:
space:
mode:
authorDenis Loh <denis.loh@gmail.com>2009-11-19 12:21:55 +0100
committerDenis Loh <denis.loh@gmail.com>2009-11-19 12:21:55 +0100
commit2d245fcabb385347359759de8e6c40ce16e43cab (patch)
treeee6d718e2be089c50a1f0f6ca6fb89cc3c3161b0 /upnpcomponents/upnpservice.cpp
parent4510b4d123a4f62c49c55fa517f15df4fa90ebec (diff)
downloadvdr-plugin-upnp-2d245fcabb385347359759de8e6c40ce16e43cab.tar.gz
vdr-plugin-upnp-2d245fcabb385347359759de8e6c40ce16e43cab.tar.bz2
Added options for verbosity level and auto detect settings
Diffstat (limited to 'upnpcomponents/upnpservice.cpp')
-rw-r--r--upnpcomponents/upnpservice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/upnpcomponents/upnpservice.cpp b/upnpcomponents/upnpservice.cpp
index a1d6a47..fc24cca 100644
--- a/upnpcomponents/upnpservice.cpp
+++ b/upnpcomponents/upnpservice.cpp
@@ -13,7 +13,7 @@ cUpnpService::cUpnpService(UpnpDevice_Handle DeviceHandle) {
this->mDeviceHandle = DeviceHandle;
}
-int cUpnpService::parseIntegerValue(IXML_Document* Document, const char* Item, int* Value){
+int cUpnpService::parseIntegerValue(IN IXML_Document* Document, IN const char* Item, OUT int* Value){
char* Val = NULL;
int Error = 0;
@@ -34,7 +34,7 @@ int cUpnpService::parseIntegerValue(IXML_Document* Document, const char* Item, i
return Error;
}
-int cUpnpService::parseStringValue(IXML_Document* Document, const char* Item, char** Value){
+int cUpnpService::parseStringValue(IN IXML_Document* Document, IN const char* Item, OUT char** Value){
char* Val = NULL;
int Error = 0;