mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-05 00:41:06 +01:00
18 lines
No EOL
534 B
Cython
18 lines
No EOL
534 B
Cython
from cpython.ref cimport PyObject
|
|
|
|
cdef extern from "../helpers/capabilityHelper.h":
|
|
cppclass PythonInterfaceDynamicImpl:
|
|
PythonInterfaceDynamicImpl(PyObject *)
|
|
|
|
cdef extern from "../helpers/capabilityHelper.h":
|
|
void reraise_kj_exception()
|
|
cdef cppclass PyRefCounter:
|
|
PyRefCounter(PyObject *)
|
|
|
|
cdef extern from "../helpers/rpcHelper.h":
|
|
cdef cppclass PyRestorer:
|
|
PyRestorer(PyObject *)
|
|
|
|
cdef extern from "../helpers/asyncHelper.h":
|
|
cdef cppclass PyEventPort:
|
|
PyEventPort(PyObject *) |