bzr branch
http://gegoxaren.bato24.eu/bzr/%2Bjunk/libbreezy
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#pragma once #include <python3.8/Python.h> typedef struct _BRZ_cxt { PyObject * program; PyObject * global; PyObject * local; } BRZ_Ctx; BRZ_Ctx * __brz_context__; static const char * __BRZ_PY_PROGRAM__ = "import breezy\n" "from breezy import bzr\n" "breezy.initalize ()\n" ""; |