| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/alljoyn_c/ |
Upload File : |
/**
* @file
* alljoyn_abouticonproxy implements a proxy bus object used to interact with
* a remote org.alljoyn.Icon interface.
*/
/******************************************************************************
* Copyright AllSeen Alliance. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
******************************************************************************/
#ifndef _ALLJOYN_ABOUTICONPROXY_C_H
#define _ALLJOYN_ABOUTICONPROXY_C_H
#include <alljoyn_c/AjAPI.h>
#include <alljoyn_c/AboutIcon.h>
#include <alljoyn_c/BusAttachment.h>
#include <alljoyn_c/Session.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* alljoyn_abouticonproxy enables the user to interact with the remote AboutIcon
* BusObject.
*/
typedef struct _alljoyn_abouticonproxy_handle* alljoyn_abouticonproxy;
/**
* Allocate a new alljoyn_abouticonproxy object.
*
* @param bus reference to bus attachment object
* @param[in] busName Unique or well-known name of an AllJoyn bus you have joined
* @param[in] sessionId the session received after joining an AllJoyn session
*
* @return The allocated alljoyn_abouticonproxy.
*/
extern AJ_API alljoyn_abouticonproxy AJ_CALL alljoyn_abouticonproxy_create(alljoyn_busattachment bus,
const char* busName,
alljoyn_sessionid sessionId);
/**
* Free an alljoyn_abouticonproxy object.
*
* @param proxy The alljoyn_abouticonproxy to be freed.
*/
extern AJ_API void AJ_CALL alljoyn_abouticonproxy_destroy(alljoyn_abouticonproxy proxy);
/**
* This method makes multiple proxy bus object method calls to fill in the
* content of the alljoyn_abouticon. Its possible for any of the method calls
* to fail causing this member function to return an error status.
*
* @param[in] proxy alljoyn_abouticonproxy object
* @param[out] icon alljoyn_abouticon that holds icon content
* @return
* - #ER_OK if successful
* - an error status indicating failure to get the icon content
*/
extern AJ_API QStatus AJ_CALL alljoyn_abouticonproxy_geticon(alljoyn_abouticonproxy proxy,
alljoyn_abouticon icon);
/**
* @param[in] proxy alljoyn_abouticonproxy object
* @param[out] version the version of the remote AboutIcon BusObject
*
* @return
* - #ER_OK if successful
* - an error status indicating failure
*/
extern AJ_API QStatus AJ_CALL alljoyn_abouticonproxy_getversion(alljoyn_abouticonproxy proxy,
uint16_t* version);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* _ALLJOYN_ABOUTICONPROXY_C_H */