On Fri, May 04, 2001 at 07:58:36AM +1000, Robert Collins wrote:
> I thought your updated cygwin as able to resolve those address's better?
> 0x67000000 is in userland isn't it?
 
0x67000000 is libXext.dll which is where the XShapeQueryExtension call is.

This is the function too.

Bool XShapeQueryExtension (dpy, event_basep, error_basep)
    Display *dpy;
    int *event_basep, *error_basep;
{
    XExtDisplayInfo *info = find_display (dpy);

    if (info && info->codes) {
        *event_basep = info->codes->first_event;
        *error_basep = info->codes->first_error;
        return True;
    } else {
        return False;
    }
}

Alan.

Reply via email to