#757 seems to not have fixed the following case:
#include <stdint.h>
#define B3_DEFAULT_CATEGORY_BITS UINT64_MAX
#define B3_DEFAULT_MASK_BITS UINT64_MAX
with -g macro-bindings, this generates
[NativeTypeName("#define B3_DEFAULT_CATEGORY_BITS UINT64_MAX")]
public const ulong B3_DEFAULT_CATEGORY_BITS = 0xffffffffffffffffUL;
[NativeTypeName("#define B3_DEFAULT_MASK_BITS UINT64_MAX")]
public const ulong B3_DEFAULT_MASK_BITS = 0xffffffffffffffffUL;
on Windows but nuint type on Unix.
#757 seems to not have fixed the following case:
with
-g macro-bindings, this generateson Windows but
nuinttype on Unix.