We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi,
i'm trying to figure out why anonymous enumerations do not appear in ffiex anywhere after calling cdef.
for example,
ffi = require'ffiex' -- example from /usr/include/net/if.h ffi.cdef[[ enum { IFF_UP = 0x1, /* Interface is up. */ # define IFF_UP IFF_UP }; ]]
after running this, what lua code will print the value of IFF_UP as 1? i am confused because i cannot find IFF_UP in any of ffiex's tables.
IFF_UP
The text was updated successfully, but these errors were encountered:
hi, thank you for reporting! this seems to be bug. I will fix it :D
Sorry, something went wrong.
No branches or pull requests
hi,
i'm trying to figure out why anonymous enumerations do not appear in ffiex anywhere after calling cdef.
for example,
after running this, what lua code will print the value of
IFF_UP
as 1? i am confused because i cannot find IFF_UP in any of ffiex's tables.The text was updated successfully, but these errors were encountered: