~ubuntu-branches/ubuntu/precise/xorg-server/precise-updates

« back to all changes in this revision

Viewing changes to dix/dixutils.c

Tags: 2:1.10.1-2
* Build xserver-xorg-core-udeb on hurd-i386.  Thanks, Samuel Thibault!
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
729
729
    return FALSE;
730
730
}
731
731
 
732
 
static void 
 
732
void 
733
733
_CallCallbacks(
734
734
    CallbackListPtr    *pcbl,
735
735
    pointer         call_data)
871
871
}
872
872
 
873
873
void
874
 
CallCallbacks(CallbackListPtr *pcbl, pointer call_data)
875
 
{
876
 
    if (!pcbl || !*pcbl) return;
877
 
    _CallCallbacks(pcbl, call_data);
878
 
}
879
 
 
880
 
void
881
874
DeleteCallbackList(CallbackListPtr *pcbl)
882
875
{
883
876
    if (!pcbl || !*pcbl) return;