comparison PyFeatureSet.h @ 79:f5c028376bf9

Some old changes that, I think, probably did not help anything
author Chris Cannam
date Wed, 12 Aug 2015 15:25:04 +0100
parents 27bab3a16c9a
children
comparison
equal deleted inserted replaced
78:e101ff25d757 79:f5c028376bf9
16 16
17 typedef struct { 17 typedef struct {
18 PyDictObject dict; 18 PyDictObject dict;
19 } FeatureSetObject; 19 } FeatureSetObject;
20 20
21 PyAPI_DATA(PyTypeObject) FeatureSet_Type; 21 extern PyTypeObject FeatureSet_Type;
22 22
23 #define PyFeatureSet_CheckExact(v) ((v)->ob_type == &FeatureSet_Type) 23 #define PyFeatureSet_CheckExact(v) ((v)->ob_type == &FeatureSet_Type)
24 #define PyFeatureSet_Check(v) PyObject_TypeCheck(v, &FeatureSet_Type) 24 #define PyFeatureSet_Check(v) PyObject_TypeCheck(v, &FeatureSet_Type)
25 25
26 void initFeatureSetType(void); 26 extern void initFeatureSetType(void);
27 27
28 #endif 28 #endif