blob: 717f6b64bb01af6deeb9558599054346aef0d790 [file] [log] [blame]
Vladimir Chtchetkine777eb682011-01-26 11:19:19 -08001/* Copyright (C) 2010 The Android Open Source Project
2**
3** This software is licensed under the terms of the GNU General Public
4** License version 2, as published by the Free Software Foundation, and
5** may be copied, distributed, and modified under those terms.
6**
7** This program is distributed in the hope that it will be useful,
8** but WITHOUT ANY WARRANTY; without even the implied warranty of
9** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10** GNU General Public License for more details.
11*/
12
13#ifndef _ANDROID_PROTOCOL_UI_COMMANDS_IMPL_H
14#define _ANDROID_PROTOCOL_UI_COMMANDS_IMPL_H
15
David 'Digit' Turnercc330d42013-12-14 23:26:42 +010016#include "android/sockets.h"
David 'Digit' Turnerb6c168b2011-02-02 21:39:10 +010017#include "android/looper.h"
Vladimir Chtchetkine777eb682011-01-26 11:19:19 -080018#include "android/protocol/ui-commands.h"
19
20/*
21 * Contains the UI-side implementation of the "core-ui-control" service that is
22 * part of the UI control protocol. Here we handle UI control commands sent by
23 * the Core to the UI.
24 */
25
26/* Creates and initializes descriptor for the UI-side of the "core-ui-control"
27 * service. Note that there can be only one instance of this service in the UI.
28 * Param:
29 * console_socket - Addresses Core's console.
30 * Return:
31 * 0 on success, or < 0 on failure.
32 */
David 'Digit' Turnerb6c168b2011-02-02 21:39:10 +010033extern int uiCmdImpl_create(SockAddress* console_socket, Looper* looper);
Vladimir Chtchetkine777eb682011-01-26 11:19:19 -080034
Vladimir Chtchetkine85276802011-01-31 15:18:45 -080035/* Destroys UI-side of the "core-ui-control" service. */
36extern void uiCmdImpl_destroy();
37
Vladimir Chtchetkine777eb682011-01-26 11:19:19 -080038#endif /* _ANDROID_PROTOCOL_UI_COMMANDS_IMPL_H */