/* * msr.h : GeeXboX uShare Microsoft Registrar Service header. * Originally developped for the GeeXboX project. * Copyright (C) 2006 Benjamin Zores * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef MSR_H_ #define MSR_H_ #define MSR_DESCRIPTION \ "" \ "" \ "" \ " 1" \ " 0" \ "" \ "" \ " " \ " IsAuthorized" \ " " \ " " \ " DeviceID" \ " in" \ " A_ARG_TYPE_DeviceID" \ " " \ " " \ " Result" \ " out" \ " A_ARG_TYPE_Result" \ " " \ " " \ " " \ " " \ " RegisterDevice" \ " " \ " " \ " RegistrationReqMsg" \ " in" \ " A_ARG_TYPE_RegistrationReqMsg" \ " " \ " " \ " RegistrationRespMsg" \ " out" \ " A_ARG_TYPE_RegistrationRespMsg" \ " " \ " " \ " " \ " " \ " IsValidated" \ " " \ " " \ " DeviceID" \ " in" \ " A_ARG_TYPE_DeviceID" \ " " \ " " \ " Result" \ " out" \ " A_ARG_TYPE_Result" \ " " \ " " \ " " \ "" \ "" \ " " \ " A_ARG_TYPE_DeviceID" \ " string" \ " " \ " " \ " A_ARG_TYPE_Result" \ " int" \ " " \ " " \ " A_ARG_TYPE_RegistrationReqMsg" \ " bin.base64" \ " " \ " " \ " A_ARG_TYPE_RegistrationRespMsg" \ " bin.base64" \ " " \ " " \ " AuthorizationGrantedUpdateID" \ " ui4" \ " " \ " " \ " AuthorizationDeniedUpdateID" \ " ui4" \ " " \ " " \ " ValidationSucceededUpdateID" \ " ui4" \ " " \ " " \ " ValidationRevokedUpdateID" \ " ui4" \ " " \ "" \ "" #define MSR_DESCRIPTION_LEN strlen (MSR_DESCRIPTION) #define MSR_LOCATION "/web/msr.xml" #define MSR_SERVICE_ID "urn:microsoft.com:serviceId:X_MS_MediaReceiverRegistrar" #define MSR_SERVICE_TYPE "urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1" #endif /* MSR_H_ */