File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -611,14 +611,23 @@ TPythonVersionProp = record
611
611
m_copy : PPyObject;
612
612
end ;
613
613
614
+ // Slots are used for two phase module initialization
615
+ // which is not yet implemented
616
+
617
+ PPyModuleDef_Slot = ^PyModuleDef_Slot;
618
+ PyModuleDef_Slot = { $IFDEF CPUX86} packed { $ENDIF} record
619
+ slot: integer;
620
+ value : Pointer;
621
+ end ;
622
+
614
623
PPyModuleDef = ^PyModuleDef;
615
624
PyModuleDef = { $IFDEF CPUX86} packed { $ENDIF} record
616
625
m_base : PyModuleDef_Base;
617
626
m_name : PAnsiChar;
618
627
m_doc : PAnsiChar;
619
628
m_size : NativeInt;
620
629
m_methods : PPyMethodDef;
621
- m_reload : inquiry ;
630
+ m_slots : PPyModuleDef_Slot ;
622
631
m_traverse : traverseproc;
623
632
m_clear : inquiry;
624
633
m_free : inquiry;
You can’t perform that action at this time.
0 commit comments