diff options
Diffstat (limited to 'Mac/Modules/cm/cmsupport.py')
-rw-r--r-- | Mac/Modules/cm/cmsupport.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Mac/Modules/cm/cmsupport.py b/Mac/Modules/cm/cmsupport.py index 0a1915f..598b51d 100644 --- a/Mac/Modules/cm/cmsupport.py +++ b/Mac/Modules/cm/cmsupport.py @@ -26,7 +26,8 @@ includestuff = includestuff + """ /* ** Parse/generate ComponentDescriptor records */ -PyObject *CmpDesc_New(itself) +static PyObject * +CmpDesc_New(itself) ComponentDescription *itself; { @@ -37,6 +38,7 @@ PyObject *CmpDesc_New(itself) itself->componentFlags, itself->componentFlagsMask); } +static int CmpDesc_Convert(v, p_itself) PyObject *v; ComponentDescription *p_itself; |