summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/elementary.rb
blob: 11b47df2b39a202a4ce06b73819920d0ab378a45 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/native'
require 'efl/native/elm/elm_general'
require 'efl/native/elm/elm_tooltip'
#
module Efl
    #
    module Elm
        #
        FCT_PREFIX = 'elm_' 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.so.1'
        #
        # TYPEDEFS
        # typedef struct _Elm_Version Elm_Version;
        typedef :pointer, :elm_version
        #
        # VARIABLES
        # EAPI extern Elm_Version *elm_version;
        attach_variable :elm_version, :elm_version
        #
        # FUNCTIONS
        fcts = [
        ]
        #
        attach_fcts fcts
        #
    end
end
#
# EOF