Mercurial > pub > dyncall > dyncall
view test/callback_suite_aggrs/README.txt @ 665:ef356272a1c7 default tip
- introduced Makefile var APP_SUFFIX to handle cases where compilers implicitly add an extension to executables (e.g. llvm/mingw64 adds .exe even of not specified via -o)
author | Tassilo Philipp |
---|---|
date | Thu, 20 Jun 2024 17:10:12 +0200 (13 months ago) |
parents | cd46e111bc4c |
children |
line wrap: on
line source
callback_suite_aggrs for dyncall written in C and Lua. Tests getting aggregates (structs, unions and arrays) back from a callback to whom they were passed by value, along with other, non-aggregate args. Note, arrays are only passed/returned by value as members of structs and unions, as they would decay to a pointer in C if passed to a function, and cannot be returned. So this test suite does not generate any arrays outside of structs and unions. A macro AGGR_MISALIGN can be used in globals.c to intentionally misalign aggregate instances used with callback object.