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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/native'
require 'efl/native/elementary'
#
module Efl
#
module ElmCache
#
FCT_PREFIX = 'elm_cache_' unless const_defined? :FCT_PREFIX
#
def self.method_missing meth, *args, &block
sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX
self.send sym, *args, &block
end
#
end
#
module Native
#
ffi_lib 'elementary-ver-pre-svn-09.so.0'
#
# FUNCTIONS
fcts = [
# EAPI void elm_cache_all_flush(void);
[ :elm_cache_all_flush, [ ], :void ],
# EAPI int elm_cache_flush_interval_get(void);
[ :elm_cache_flush_interval_get, [ ], :int ],
# EAPI void elm_cache_flush_interval_set(int size);
[ :elm_cache_flush_interval_set, [ :int ], :void ],
# EAPI Eina_Bool elm_cache_flush_enabled_get(void);
[ :elm_cache_flush_enabled_get, [ ], :bool ],
# EAPI void elm_cache_flush_enabled_set(Eina_Bool enabled);
[ :elm_cache_flush_enabled_set, [ :bool ], :void ],
# EAPI int elm_font_cache_get(void);
[ :elm_font_cache_get, [ ], :int ],
# EAPI void elm_font_cache_set(int size);
[ :elm_font_cache_set, [ :int ], :void ],
# EAPI int elm_image_cache_get(void);
[ :elm_image_cache_get, [ ], :int ],
# EAPI void elm_image_cache_set(int size);
[ :elm_image_cache_set, [ :int ], :void ],
# EAPI int elm_edje_file_cache_get(void);
[ :elm_edje_file_cache_get, [ ], :int ],
# EAPI void elm_edje_file_cache_set(int size);
[ :elm_edje_file_cache_set, [ :int ], :void ],
# EAPI int elm_edje_collection_cache_get(void);
[ :elm_edje_collection_cache_get, [ ], :int ],
# EAPI void elm_edje_collection_cache_set(int size);
[ :elm_edje_collection_cache_set, [ :int ], :void ],
]
#
attach_fcts fcts
#
end
end
#
# EOF
|