tizen 2.3 release
[external/buxton.git] / src / shared / buxtonresponse.h
1 /*
2  * This file is part of buxton.
3  *
4  * Copyright (C) 2013 Intel Corporation
5  *
6  * buxton is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1
9  * of the License, or (at your option) any later version.
10  */
11
12 #pragma once
13
14 #ifdef HAVE_CONFIG_H
15         #include "config.h"
16 #endif
17
18 #include "buxtonarray.h"
19 #include "buxtonkey.h"
20
21 /**
22  * Represents daemon's reply to client
23  */
24 typedef struct BuxtonResponse {
25         BuxtonArray *data; /**<Array containing BuxtonData elements */
26         BuxtonControlMessage type; /**<Type of message in the response */
27         _BuxtonKey *key; /**<Key used by client to make the request */
28 } _BuxtonResponse;
29
30 /*
31  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
32  *
33  * Local variables:
34  * c-basic-offset: 8
35  * tab-width: 8
36  * indent-tabs-mode: t
37  * End:
38  *
39  * vi: set shiftwidth=8 tabstop=8 noexpandtab:
40  * :indentSize=8:tabSize=8:noTabs=false:
41  */