blob: 11dfbfd86f174f892759dd5a3592ff1244a409ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/**
* @addtogroup Elm_Thumb
*
* @{
*/
/**
* Get the ethumb_client handle so custom configuration can be made.
*
* @return Ethumb_Client instance or NULL.
*
* The ethumb client handle returned may or may not be NULL. It may or may
* not survive into the future (ethumbd may become disconnected). Do not use
* this unless you know what you are doing.
*/
EAPI void *elm_thumb_ethumb_client_get(void);
/**
* Get the ethumb_client connection state.
*
* @return @c EINA_TRUE if the client is connected to the server or @c
* EINA_FALSE otherwise.
*/
EAPI Eina_Bool elm_thumb_ethumb_client_connected_get(void);
/**
* @}
*/
|