summaryrefslogtreecommitdiff
path: root/src/lib/ecore/efl_threadio.eo
blob: 1d3af45cdcf5f8552aa2b0ab8fea5aec489401a0 (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
43
44
45
46
47
48
49
50
51
52
import efl_object;

function EFlThreadIOCall {
   [[ A Function to call on the "other end" of a thread obvject ]]
   params {
      @cref event: Efl.Event; [[ ]]
   }
};

function EFlThreadIOCallSync {
   [[ A Function to call on the "other end" of a thread obvject ]]
   params {
      @cref event: Efl.Event; [[ ]]
   }
   return: void_ptr; [[ ]]
};

mixin Efl.ThreadIO
{
   [[ ]]
   methods {
      @property indata {
         set { }
         get { }
         values {
            data: void_ptr; [[ ]]
         }
      }
      @property outdata {
         set { }
         get { }
         values {
            data: void_ptr; [[ ]]
         }
      }
      call {
         params {
            func: EFlThreadIOCall; [[ ]]
         }
      }
      call_sync {
         params {
            func: EFlThreadIOCallSync; [[ ]]
         }
         return: void_ptr; [[ ]]
      }
   }
   events {
   }
   implements {
   }
}