nix icon indicating copy to clipboard operation
nix copied to clipboard

C API: Use `enum` instead of `#define` for better codegen

Open roberth opened this issue 1 year ago • 0 comments

Is your feature request related to a problem? Please describe.

Currently Rust bindgen generates u32 for #define NIX_OK, but nix_err is an int. This then requires an undue cast.

Other code generators will also have trouble associating a type with these, but a C enum could solve the problem.

Describe the solution you'd like

enum nix_err

Describe alternatives you've considered

Maybe some code generators don't know how to deal with enum's. I would consider such a code generator to be very unfinished.

Additional context

Priorities

Add :+1: to issues you find important.

roberth avatar May 02 '24 16:05 roberth