diff options
Diffstat (limited to 'upnpcomponents/upnpservice.cpp')
-rw-r--r-- | upnpcomponents/upnpservice.cpp | 4 |
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; |