Create devel package not to install header and .pc file in binary
[platform/core/uifw/anthy.git] / anthy / filemap.h
1 /* mmap¤òÃê¾Ý²½¤¹¤ë */
2 #ifndef _filemap_h_included_
3 #define _filemap_h_included_
4
5 /* ¥á¥â¥ê¾å¤Ëmap¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤Î¥Ï¥ó¥É¥ë */
6 struct filemapping;
7
8 struct filemapping *anthy_mmap(const char *fn, int wr);
9 void *anthy_mmap_address(struct filemapping *m);
10 int anthy_mmap_size(struct filemapping *m);
11 int anthy_mmap_is_writable(struct filemapping *m);
12 void anthy_munmap(struct filemapping *m);
13
14 #endif