Files
libgbinder/include/gbinder_remote_reply.h

105 lines
3.0 KiB
C

/*
* Copyright (C) 2018 Jolla Ltd.
* Copyright (C) 2018 Slava Monich <slava.monich@jolla.com>
*
* You may use this file under the terms of BSD license as follows:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the names of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef GBINDER_REMOTE_REPLY_H
#define GBINDER_REMOTE_REPLY_H
#include <gbinder_reader.h>
G_BEGIN_DECLS
GBinderRemoteReply*
gbinder_remote_reply_ref(
GBinderRemoteReply* reply);
void
gbinder_remote_reply_unref(
GBinderRemoteReply* reply);
void
gbinder_remote_reply_init_reader(
GBinderRemoteReply* reply,
GBinderReader* reader);
GBinderLocalReply*
gbinder_remote_reply_copy_to_local(
GBinderRemoteReply* reply) /* since 1.0.6 */
G_GNUC_WARN_UNUSED_RESULT;
/* Convenience function to decode replies with just one data item */
gboolean
gbinder_remote_reply_read_int32(
GBinderRemoteReply* reply,
gint32* value);
gboolean
gbinder_remote_reply_read_uint32(
GBinderRemoteReply* reply,
guint32* value);
gboolean
gbinder_remote_reply_read_int64(
GBinderRemoteReply* reply,
gint64* value);
gboolean
gbinder_remote_reply_read_uint64(
GBinderRemoteReply* reply,
guint64* value);
const char*
gbinder_remote_reply_read_string8(
GBinderRemoteReply* reply);
char*
gbinder_remote_reply_read_string16(
GBinderRemoteReply* reply)
G_GNUC_WARN_UNUSED_RESULT;
GBinderRemoteObject*
gbinder_remote_reply_read_object(
GBinderRemoteReply* reply)
G_GNUC_WARN_UNUSED_RESULT;
G_END_DECLS
#endif /* GBINDER_REMOTE_REPLY_H */
/*
* Local Variables:
* mode: C
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/