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
Some mechanism of taking pointer of the types should be possible. The example is below.
C code:
/* @enum my_enum * @type int * @member value1 1 * @member value2 2 */ typedef enum {VALUE1 = 1, VALUE2 = 2} my_enum_t;
Python code:
lib.my_enum # evaluates to ctypes.c_int type lib.my_enum.ref # evaluates to ctypes.LP_c_int
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some mechanism of taking pointer of the types should be possible. The example is below.
C code:
Python code:
The text was updated successfully, but these errors were encountered: