On Wed, 9 Aug 2006 17:38:13 -0400 (EDT) Enlightenment CVS <[EMAIL PROTECTED]> wrote:
> Enlightenment CVS committal > > Author : handyande > Project : misc > Module : engage > > Dir : misc/engage/src > > > Modified Files: > config.c dock.c engage.h window.c > > > Log Message: > Composite patch from Hannes Janetzek - thanks very much :) > =================================================================== > RCS file: /cvs/e/misc/engage/src/window.c,v > retrieving revision 1.31 > retrieving revision 1.32 > diff -u -3 -r1.31 -r1.32 > --- window.c 13 Jun 2005 18:55:14 -0000 1.31 > +++ window.c 9 Aug 2006 21:38:13 -0000 1.32 > @@ -6,6 +6,8 @@ > #include <X11/Xlib.h> > #include <X11/Xatom.h> > #include <X11/Xutil.h> > +#include <X11/extensions/shape.h> > + > #ifdef XINERAMA > #include <X11/extensions/Xinerama.h> > #endif > @@ -32,6 +34,22 @@ > static void handle_menu_draw(void *data, Evas * e, Evas_Object * > obj, void *event); > static void od_window_set_hidden(int hidden); > +static void window_input_shape_rectangle_set(Ecore_X_Window > win, int x, int y, int w, int h); + > + > +static void > +window_input_shape_rectangle_set(Ecore_X_Window win, int x, int y, > int w, int h) +{ > + XRectangle rect; > + > + rect.x = x; > + rect.y = y; > + rect.width = w; > + rect.height = h; > + XShapeCombineRectangles(ecore_x_display_get(), win, ShapeInput, > 0, 0, &rect, 1, ShapeSet, Unsorted); +} window.c: In function `window_input_shape_rectangle_set': window.c:49: error: `ShapeInput' undeclared (first use in this function) window.c:49: error: (Each undeclared identifier is reported only once window.c:49: error: for each function it appears in.) At least on my SuSE 9.3 Pro.
signature.asc
Description: PGP signature
------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel