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
The following action needs to be possible:
print(lib.SOME_VARIABLE) # undefined behaviour lib.SOME_VARIABLE = 5 print(lib.SOME_VARIABLE) # prints "5"
Where SOME_VARIABLE is the global variable defined in the dynamic library:
SOME_VARIABLE
/* @variable SOME_VARIABLE * @type int */ int SOME_VARIABLE = 0;
The same behavior should be possible for globally defined structs.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following action needs to be possible:
Where
SOME_VARIABLE
is the global variable defined in the dynamic library:The same behavior should be possible for globally defined structs.
The text was updated successfully, but these errors were encountered: