- still using the same version of the reader API (2.03) - this seems to solve strange issues with genericPatchField symbols, but it still doesn't get the reader module working. - added in the release information (the build string)
19 lines
331 B
C
19 lines
331 B
C
int USERD_get_reader_version
|
|
(
|
|
char version_number[Z_MAX_USERD_NAME]
|
|
)
|
|
{
|
|
|
|
#ifdef ENSIGHTDEBUG
|
|
Info << "Entering: USERD_get_reader_version" << endl;
|
|
#endif
|
|
|
|
strncpy(version_number, readerVersion, Z_MAX_USERD_NAME);
|
|
|
|
#ifdef ENSIGHTDEBUG
|
|
Info << "Leaving: USERD_get_reader_version" << endl;
|
|
#endif
|
|
|
|
return Z_OK;
|
|
}
|