blob: a5e49da39688962ab777dc59500f681d6681e5a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "config.h"
#include <sys/mman.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "evas_cs2.h"
#include "evas_cs2_private.h"
#ifdef EVAS_CSERVE2
void *
evas_cserve2_image_data_get(Image_Entry *ie)
{
Data_Entry *dentry = ie->data2;
if (!dentry)
return NULL;
return dentry->shm.data;
}
#endif
|