the-snork
the-snork
Changes for newer SDCC Reduced warnings allow real building of all targets with just calling "make" (defines are now honored properly)
In code generated by makepy, there was no chance to create struct instances, as using Record failed. Convenience constructors are generated now. ```py class TestStruct1: def __new__(cls, *args, **kwargs): return...
## Expected behavior and actual behavior Think of a method (e.g. in PyCOMTest.idl) `HRESULT InStruct( [in] TestStruct1 inStruct );` Here, the structure is given by value. The calls to InStruct...