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
In the example file https://github.com/open-license-manager/examples/blob/develop/submodule/src/example.cpp size_t pc_id_sz = LCC_API_PC_IDENTIFIER_SIZE; should be modified to size_t pc_id_sz = LCC_API_PC_IDENTIFIER_SIZE + 1; or identify_pc will fail and print errors in identify_pc. It won't output the pc signature.
size_t pc_id_sz = LCC_API_PC_IDENTIFIER_SIZE;
size_t pc_id_sz = LCC_API_PC_IDENTIFIER_SIZE + 1;
identify_pc
errors in identify_pc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the example file https://github.com/open-license-manager/examples/blob/develop/submodule/src/example.cpp
size_t pc_id_sz = LCC_API_PC_IDENTIFIER_SIZE;
should be modified to
size_t pc_id_sz = LCC_API_PC_IDENTIFIER_SIZE + 1;
or
identify_pc
will fail and printerrors in identify_pc
. It won't output the pc signature.The text was updated successfully, but these errors were encountered: