- 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
333 B
C
19 lines
333 B
C
int USERD_get_reader_release
|
|
(
|
|
char release_number[Z_MAX_USERD_NAME]
|
|
)
|
|
{
|
|
|
|
#ifdef ENSIGHTDEBUG
|
|
Info << "Entering: USERD_get_reader_release" << endl;
|
|
#endif
|
|
|
|
strncpy(release_number, Foam::FOAMbuild, Z_MAX_USERD_NAME);
|
|
|
|
#ifdef ENSIGHTDEBUG
|
|
Info << "Leaving: USERD_get_reader_release" << endl;
|
|
#endif
|
|
|
|
return Z_OK;
|
|
}
|