Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore_evas


Modified Files:
        ecore_evas.c ecore_evas_buffer.c ecore_evas_x.c 


Log Message:


and yet more warning removal

===================================================================
RCS file: 
/cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_evas/ecore_evas.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- ecore_evas.c        6 Nov 2005 09:47:22 -0000       1.26
+++ ecore_evas.c        6 Jan 2006 18:46:30 -0000       1.27
@@ -16,7 +16,7 @@
  * Query if engine @param engine is supported by ecore_evas. 1 is returned if
  * it is, and 0 is returned if it is not supported.
  */
-int
+EAPI int
 ecore_evas_engine_type_supported_get(Ecore_Evas_Engine_Type engine)
 {
    switch (engine)
@@ -74,7 +74,7 @@
  * 
  * Set up the Evas wrapper system.
  */
-int
+EAPI int
 ecore_evas_init(void)
 {
    if (_ecore_evas_init_count == 0)
@@ -88,7 +88,7 @@
  * 
  * This closes the Evas system down.
  */
-int
+EAPI int
 ecore_evas_shutdown(void)
 {
    _ecore_evas_init_count--;
@@ -118,7 +118,7 @@
  * @param e The Evas to get the Ecore_Evas from
  * @return The Ecore_Evas that holds this Evas
  */
-Ecore_Evas *
+EAPI Ecore_Evas *
 ecore_evas_ecore_evas_get(Evas *e)
 {
    return evas_data_attach_get(e);
@@ -130,7 +130,7 @@
  *
  * This frees up any memory used by the Ecore_Evas. 
  */
-void
+EAPI void
 ecore_evas_free(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -145,7 +145,7 @@
    return;
 }
 
-void *
+EAPI void *
 ecore_evas_data_get(Ecore_Evas *ee, const char *key)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -160,7 +160,7 @@
    return evas_hash_find(ee->data, key);
 }
 
-void
+EAPI void
 ecore_evas_data_set(Ecore_Evas *ee, const char *key, const void *data)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -188,7 +188,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever @p ee is resized.
  */
-void
+EAPI void
 ecore_evas_callback_resize_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -210,7 +210,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever @p ee is moved.
  */
-void
+EAPI void
 ecore_evas_callback_move_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -232,7 +232,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever @p ee is shown.
  */
-void
+EAPI void
 ecore_evas_callback_show_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -254,7 +254,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever @p ee is hidden.
  */
-void
+EAPI void
 ecore_evas_callback_hide_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -276,7 +276,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever @p ee gets a delete request.
  */
-void
+EAPI void
 ecore_evas_callback_delete_request_set(Ecore_Evas *ee, void (*func) 
(Ecore_Evas *ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -298,7 +298,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever @p ee is destroyed.
  */
-void
+EAPI void
 ecore_evas_callback_destroy_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -320,7 +320,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever @p ee gets focus.
  */
-void
+EAPI void
 ecore_evas_callback_focus_in_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -342,7 +342,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever @p ee loses focus.
  */
-void
+EAPI void
 ecore_evas_callback_focus_out_set(Ecore_Evas *ee, void (*func) (Ecore_Evas 
*ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -364,7 +364,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever the mouse enters @p ee.
  */
-void
+EAPI void
 ecore_evas_callback_mouse_in_set(Ecore_Evas *ee, void (*func) (Ecore_Evas *ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -386,7 +386,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called whenever the mouse leaves @p ee.
  */
-void
+EAPI void
 ecore_evas_callback_mouse_out_set(Ecore_Evas *ee, void (*func) (Ecore_Evas 
*ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -408,7 +408,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called just before the evas in @p ee is rendered.
  */
-void
+EAPI void
 ecore_evas_callback_pre_render_set(Ecore_Evas *ee, void (*func) (Ecore_Evas 
*ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -430,7 +430,7 @@
  * A call to this function will set a callback on an Ecore_Evas, causing
  * @p func to be called just after the evas in @p ee is rendered.
  */
-void
+EAPI void
 ecore_evas_callback_post_render_set(Ecore_Evas *ee, void (*func) (Ecore_Evas 
*ee))
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -451,7 +451,7 @@
  * 
  * This function returns the Evas contained within @p ee.
  */
-Evas *
+EAPI Evas *
 ecore_evas_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -471,7 +471,7 @@
  *
  * This moves @p ee to the screen coordinates (@p x, @p y)
  */
-void
+EAPI void
 ecore_evas_move(Ecore_Evas *ee, int x, int y)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -492,7 +492,7 @@
  *
  * This sets the managed geometry position of the @p ee to (@p x, @p y)
  */
-void
+EAPI void
 ecore_evas_managed_move(Ecore_Evas *ee, int x, int y)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -513,7 +513,7 @@
  *
  * This resizes @p ee to @p w x @p h
  */
-void
+EAPI void
 ecore_evas_resize(Ecore_Evas *ee, int w, int h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -548,7 +548,7 @@
  * it to @p w x @p h.
  *
  */
-void
+EAPI void
 ecore_evas_move_resize(Ecore_Evas *ee, int x, int y, int w, int h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -588,7 +588,7 @@
  * @endcode
  *
  */
-void
+EAPI void
 ecore_evas_geometry_get(Ecore_Evas *ee, int *x, int *y, int *w, int *h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -622,7 +622,7 @@
  * The allowed values of @p rot depend on the engine being used. Most only
  * allow multiples of 90.
  */
-void
+EAPI void
 ecore_evas_rotation_set(Ecore_Evas *ee, int rot)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -645,7 +645,7 @@
  * @return the angle (in degrees) of rotation.
  *
  */
-int
+EAPI int
 ecore_evas_rotation_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -669,7 +669,7 @@
  * non-shaped Ecore_Evases, it is recommend to cover the entire evas with a
  * background object.
  */
-void
+EAPI void
 ecore_evas_shaped_set(Ecore_Evas *ee, int shaped)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -689,7 +689,7 @@
  *
  * This function returns 1 if @p ee is shaped, and 0 if not.
  */
-int
+EAPI int
 ecore_evas_shaped_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -707,7 +707,7 @@
  *
  * This function makes @p ee visible.
  */
-void
+EAPI void
 ecore_evas_show(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -726,7 +726,7 @@
  *
  * This function makes @p ee hidden.
  */
-void
+EAPI void
 ecore_evas_hide(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -746,7 +746,7 @@
  *
  * This function queries @p ee and returns 1 if it is visible, and 0 if not.
  */
-int
+EAPI int
 ecore_evas_visibility_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -764,7 +764,7 @@
  *
  * This functions raises the Ecore_Evas to the front.
  */
-void
+EAPI void
 ecore_evas_raise(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -783,7 +783,7 @@
  *
  * This functions lowers the Ecore_Evas to the back.
  */
-void
+EAPI void
 ecore_evas_lower(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -803,7 +803,7 @@
  * 
  * This function sets the title of @p ee to @p t.
  */
-void
+EAPI void
 ecore_evas_title_set(Ecore_Evas *ee, const char *t)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -823,7 +823,7 @@
  *
  * This function returns the title of @p ee.
  */
-const char *
+EAPI const char *
 ecore_evas_title_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -843,7 +843,7 @@
  *
  * This function sets the name of @p ee to @p n, and its class to @p c.
  */
-void
+EAPI void
 ecore_evas_name_class_set(Ecore_Evas *ee, const char *n, const char *c)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -865,7 +865,7 @@
  * This function gets puts the name of @p ee into @p n, and its class into
  * @p c.
  */
-void
+EAPI void
 ecore_evas_name_class_get(Ecore_Evas *ee, const char **n, const char **c)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -886,7 +886,7 @@
  *
  * This function sets the minimum size of @p ee to @p w x @p h.
  */
-void
+EAPI void
 ecore_evas_size_min_set(Ecore_Evas *ee, int w, int h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -917,7 +917,7 @@
  *
  * This function puts the minimum size of @p ee into @p w and @p h.
  */
-void
+EAPI void
 ecore_evas_size_min_get(Ecore_Evas *ee, int *w, int *h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -946,7 +946,7 @@
  *
  * This function sets the maximum size of @p ee to @p w x @p h.
  */
-void
+EAPI void
 ecore_evas_size_max_set(Ecore_Evas *ee, int w, int h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -977,7 +977,7 @@
  *
  * This function puts the maximum size of @p ee into @p w and @p h.
  */
-void
+EAPI void
 ecore_evas_size_max_get(Ecore_Evas *ee, int *w, int *h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1006,7 +1006,7 @@
  *
  * This function sets the base size of @p ee to @p w x @p h.
  */
-void
+EAPI void
 ecore_evas_size_base_set(Ecore_Evas *ee, int w, int h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1037,7 +1037,7 @@
  *
  * This function puts the base size of @p ee into @p w and @p h.
  */
-void
+EAPI void
 ecore_evas_size_base_get(Ecore_Evas *ee, int *w, int *h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1067,7 +1067,7 @@
  * This function sets the step size of @p ee to @p w x @p h. This limits the
  * size of an Ecore_Evas to always being an integer multiple of the step size.
  */
-void
+EAPI void
 ecore_evas_size_step_set(Ecore_Evas *ee, int w, int h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1098,7 +1098,7 @@
  *
  * This function puts the step size of @p ee into @p w and @p h.
  */
-void
+EAPI void
 ecore_evas_size_step_get(Ecore_Evas *ee, int *w, int *h)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1132,7 +1132,7 @@
  * by @p hot_x and @p hot_y, which are coordinates with respect to the top left
  * corner of the cursor image.
  */
-void
+EAPI void
 ecore_evas_cursor_set(Ecore_Evas *ee, const char *file, int layer, int hot_x, 
int hot_y)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1155,7 +1155,7 @@
  *
  * This function queries information about an Ecore_Evas' cursor.
  */
-void
+EAPI void
 ecore_evas_cursor_get(Ecore_Evas *ee, char **file, int *layer, int *hot_x, int 
*hot_y)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1177,7 +1177,7 @@
  *
  * This function moves @p ee to the layer @p layer.
  */
-void
+EAPI void
 ecore_evas_layer_set(Ecore_Evas *ee, int layer)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1196,7 +1196,7 @@
  * @return the layer @p ee's window is on.
  *
  */
-int
+EAPI int
 ecore_evas_layer_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1215,7 +1215,7 @@
  *
  * This function focuses @p ee if @p on is 1, or defocuses @p ee if @p on is 0.
  */
-void
+EAPI void
 ecore_evas_focus_set(Ecore_Evas *ee, int on)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1234,7 +1234,7 @@
  * @return 1 if @p ee if focused, 0 if not.
  *
  */
-int
+EAPI int
 ecore_evas_focus_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1254,7 +1254,7 @@
  * This function iconifies @p ee if @p on is 1, or uniconifies @p ee if @p on
  * is 0.
  */
-void
+EAPI void
 ecore_evas_iconified_set(Ecore_Evas *ee, int on)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1273,7 +1273,7 @@
  * @return 1 if @p ee is iconified, 0 if not.
  *
  */
-int
+EAPI int
 ecore_evas_iconified_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1293,7 +1293,7 @@
  * This function makes @p ee borderless if @p on is 1, or bordered if @p on
  * is 0.
  */
-void
+EAPI void
 ecore_evas_borderless_set(Ecore_Evas *ee, int on)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1312,7 +1312,7 @@
  * @return 1 if @p ee is borderless, 0 if not.
  *
  */
-int
+EAPI int
 ecore_evas_borderless_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1332,7 +1332,7 @@
  * This function causes the window manager to ignore @p ee if @p on is 1,
  * or not ignore @p ee if @p on is 0.
  */
-void
+EAPI void
 ecore_evas_override_set(Ecore_Evas *ee, int on)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1351,7 +1351,7 @@
  * @return 1 if @p ee is overridden, 0 if not.
  *
  */
-int
+EAPI int
 ecore_evas_override_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1371,7 +1371,7 @@
  * This function maximizes @p ee if @p on is 1, or unmaximizes @p ee
  * if @p on is 0.
  */
-void
+EAPI void
 ecore_evas_maximized_set(Ecore_Evas *ee, int on)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1390,7 +1390,7 @@
  * @return 1 if @p ee is maximized, 0 if not.
  *
  */
-int
+EAPI int
 ecore_evas_maximized_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1410,7 +1410,7 @@
  * This function causes @p ee to be fullscreen if @p on is 1,
  * or not if @p on is 0.
  */
-void
+EAPI void
 ecore_evas_fullscreen_set(Ecore_Evas *ee, int on)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1429,7 +1429,7 @@
  * @return 1 if @p ee is fullscreen, 0 if not.
  *
  */
-int
+EAPI int
 ecore_evas_fullscreen_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1450,7 +1450,7 @@
  * This function causes @p ee to be drawn to a pixmap to avoid recalculations.
  * On expose events it will copy from the pixmap to the window.
  */
-void
+EAPI void
 ecore_evas_avoid_damage_set(Ecore_Evas *ee, int on)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1469,7 +1469,7 @@
  * @return 1 if @p ee avoids damage, 0 if not.
  *
  */
-int
+EAPI int
 ecore_evas_avoid_damage_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1487,7 +1487,7 @@
  * @param withdrawn The Ecore_Evas window's new withdrawn state.
  *
  */
-void
+EAPI void
 ecore_evas_withdrawn_set(Ecore_Evas *ee, int withdrawn)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1507,7 +1507,7 @@
  * @return The Ecore_Evas window's withdrawn state.
  *
  */
-int
+EAPI int
 ecore_evas_withdrawn_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1526,7 +1526,7 @@
  * @param sticky The Ecore_Evas window's new sticky state.
  *
  */
-void
+EAPI void
 ecore_evas_sticky_set(Ecore_Evas *ee, int sticky)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1547,7 +1547,7 @@
  * @return The Ecore_Evas window's sticky state.
  *
  */
-int
+EAPI int
 ecore_evas_sticky_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1566,7 +1566,7 @@
  * @param sticky The Ecore_Evas new ignore state
  *
  */
-void
+EAPI void
 ecore_evas_ignore_events_set(Ecore_Evas *ee, int ignore)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
@@ -1587,7 +1587,7 @@
  * @return The Ecore_Evas window's ignore state.
  *
  */
-int
+EAPI int
 ecore_evas_ignore_events_get(Ecore_Evas *ee)
 {
    if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_evas/ecore_evas_buffer.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- ecore_evas_buffer.c 6 Nov 2005 09:47:22 -0000       1.9
+++ ecore_evas_buffer.c 6 Jan 2006 18:46:30 -0000       1.10
@@ -424,7 +424,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_Evas *
+EAPI Ecore_Evas *
 ecore_evas_buffer_new(int w, int h)
 {
 #ifdef BUILD_ECORE_EVAS_BUFFER
@@ -503,7 +503,7 @@
 #endif   
 }
 
-const int *
+EAPI const int *
 ecore_evas_buffer_pixels_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_EVAS_BUFFER
@@ -514,7 +514,7 @@
 #endif   
 }
 
-Evas_Object *
+EAPI Evas_Object *
 ecore_evas_object_image_new(Ecore_Evas *ee_target)
 {
 #ifdef BUILD_ECORE_EVAS_BUFFER
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_evas/ecore_evas_x.c,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -3 -r1.71 -r1.72
--- ecore_evas_x.c      6 Dec 2005 23:43:32 -0000       1.71
+++ ecore_evas_x.c      6 Jan 2006 18:46:30 -0000       1.72
@@ -1786,7 +1786,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_Evas *
+EAPI Ecore_Evas *
 ecore_evas_software_x11_new(const char *disp_name, Ecore_X_Window parent, 
                            int x, int y, int w, int h)
 {
@@ -1916,7 +1916,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_X_Window
+EAPI Ecore_X_Window
 ecore_evas_software_x11_window_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_X
@@ -1931,7 +1931,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_X_Window
+EAPI Ecore_X_Window
 ecore_evas_software_x11_subwindow_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_X
@@ -1946,7 +1946,7 @@
  *
  * FIXME: To be fixed.
  */
-void
+EAPI void
 ecore_evas_software_x11_direct_resize_set(Ecore_Evas *ee, int on)
 {
 #ifdef BUILD_ECORE_X
@@ -1977,7 +1977,7 @@
  *
  * FIXME: To be fixed.
  */
-int
+EAPI int
 ecore_evas_software_x11_direct_resize_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_X
@@ -1992,7 +1992,7 @@
  *
  * FIXME: To be fixed.
  */
-void
+EAPI void
 ecore_evas_software_x11_extra_event_window_add(Ecore_Evas *ee, Ecore_X_Window 
win)
 {
 #ifdef BUILD_ECORE_X
@@ -2014,7 +2014,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_Evas *
+EAPI Ecore_Evas *
 ecore_evas_gl_x11_new(const char *disp_name, Ecore_X_Window parent, 
                      int x, int y, int w, int h)
 {
@@ -2159,7 +2159,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_X_Window
+EAPI Ecore_X_Window
 ecore_evas_gl_x11_window_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_X
@@ -2174,7 +2174,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_X_Window
+EAPI Ecore_X_Window
 ecore_evas_gl_x11_subwindow_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_X
@@ -2189,7 +2189,7 @@
  *
  * FIXME: To be fixed.
  */
-void
+EAPI void
 ecore_evas_gl_x11_direct_resize_set(Ecore_Evas *ee, int on)
 {
 #ifdef BUILD_ECORE_X
@@ -2204,7 +2204,7 @@
  *
  * FIXME: To be fixed.
  */
-int
+EAPI int
 ecore_evas_gl_x11_direct_resize_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_X
@@ -2219,7 +2219,7 @@
  *
  * FIXME: To be fixed.
  */
-void
+EAPI void
 ecore_evas_gl_x11_extra_event_window_add(Ecore_Evas *ee, Ecore_X_Window win)
 {
    ecore_evas_software_x11_extra_event_window_add(ee, win);
@@ -2230,7 +2230,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_Evas *
+EAPI Ecore_Evas *
 ecore_evas_xrender_x11_new(const char *disp_name, Ecore_X_Window parent, 
                      int x, int y, int w, int h)
 {
@@ -2347,7 +2347,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_X_Window
+EAPI Ecore_X_Window
 ecore_evas_xrender_x11_window_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_X 
@@ -2362,7 +2362,7 @@
  *
  * FIXME: To be fixed.
  */
-Ecore_X_Window
+EAPI Ecore_X_Window
 ecore_evas_xrender_x11_subwindow_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_X
@@ -2377,7 +2377,7 @@
  *
  * FIXME: To be fixed.
  */
-void
+EAPI void
 ecore_evas_xrender_x11_direct_resize_set(Ecore_Evas *ee, int on)
 {
 #ifdef BUILD_ECORE_X
@@ -2392,7 +2392,7 @@
  *
  * FIXME: To be fixed.
  */
-int
+EAPI int
 ecore_evas_xrender_x11_direct_resize_get(Ecore_Evas *ee)
 {
 #ifdef BUILD_ECORE_X
@@ -2407,7 +2407,7 @@
  *
  * FIXME: To be fixed.
  */
-void
+EAPI void
 ecore_evas_xrender_x11_extra_event_window_add(Ecore_Evas *ee, Ecore_X_Window 
win)
 {
    ecore_evas_software_x11_extra_event_window_add(ee, win);




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to