ecore.vapi: add FdHandlerFlags and ExeFlags
[libeflvala.git] / vapi / eina.vapi
blob3944c8e598ce7dc0fe9b760350e7644a436d79da
1 /**
2  * Copyright (C) 2009 Michael 'Mickey' Lauer <mlauer@vanille-media.de>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
17  *
18  */
19 [CCode (cprefix = "Eina_", lower_case_cprefix = "eina_", cheader_filename = "Eina.h")]
20 namespace Eina
22     public int init();
23     public int shutdown();
25     //=======================================================================
26     [Compact]
27     public class List<G>
28     {
29         [ReturnsModifiedPointer ()]
30         public void append( G# data );
32         public uint count();
34         public weak G data_find( G# data );
35         // ???
36         public List<G> data_find_list( G# data );
38         public weak G nth( uint n );
40         [ReturnsModifiedPointer ()]
41         public void prepend( G# data );
43         [ReturnsModifiedPointer ()]
44         public void remove( G# data );
46         public static void init();
47         public static void shutdown();
48     }