Don't use extern when we mean staticforward (OSX gcc is picky about it).

Blacklist SendControlMessage: it's signature has changed between Universal Headers 3.3 and 3.4.
This commit is contained in:
Jack Jansen 2001-06-20 21:31:28 +00:00
parent f1927a6d80
commit b8248d8cff
3 changed files with 5 additions and 24 deletions

View file

@ -122,8 +122,8 @@ static ControlUserPaneIdleUPP myidleproc_upp;
static ControlUserPaneHitTestUPP myhittestproc_upp;
static ControlUserPaneTrackingUPP mytrackingproc_upp;
extern int settrackfunc(PyObject *); /* forward */
extern void clrtrackfunc(void); /* forward */
staticforward int settrackfunc(PyObject *); /* forward */
staticforward void clrtrackfunc(void); /* forward */
staticforward int setcallback(PyObject *, OSType, PyObject *, UniversalProcPtr *);
"""