workflows / ComfyUI-Easy-Install-Windows /Helper-CEI-NEXT /ComfyUI-Easy-Install /python_embeded_3.11 /include /complexobject.h
| /* Complex number structure */ | |
| extern "C" { | |
| /* Complex object interface */ | |
| PyAPI_DATA(PyTypeObject) PyComplex_Type; | |
| PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag); | |
| PyAPI_FUNC(double) PyComplex_RealAsDouble(PyObject *op); | |
| PyAPI_FUNC(double) PyComplex_ImagAsDouble(PyObject *op); | |
| } | |