diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-06-20 21:31:28 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-06-20 21:31:28 (GMT) |
commit | b8248d8cff804f3a7e694d6322300bddbfcd6a45 (patch) | |
tree | e0f07d19d9282728da2367b236e5f9fe496afdce /Mac/Modules/ctl/ctlsupport.py | |
parent | f1927a6d802c33abd971ac1eec8ac764e435af44 (diff) | |
download | cpython-b8248d8cff804f3a7e694d6322300bddbfcd6a45.zip cpython-b8248d8cff804f3a7e694d6322300bddbfcd6a45.tar.gz cpython-b8248d8cff804f3a7e694d6322300bddbfcd6a45.tar.bz2 |
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.
Diffstat (limited to 'Mac/Modules/ctl/ctlsupport.py')
-rw-r--r-- | Mac/Modules/ctl/ctlsupport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/ctl/ctlsupport.py b/Mac/Modules/ctl/ctlsupport.py index 651326b..869811b 100644 --- a/Mac/Modules/ctl/ctlsupport.py +++ b/Mac/Modules/ctl/ctlsupport.py @@ -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 *); """ |