Home
Downloads
Documentation
Installation
User Guide
man-pages
API Documentation
README
Release Notes
Changes
License
Support
SourceForge Project
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
applications
utilities
postProcessing
graphics
ensightFoamReader
USERD_get_name_of_reader.H
Go to the documentation of this file.
1
//======================================================================
2
// Setting name in the gui, and specifying one or two input fields
3
//======================================================================
4
int
USERD_get_name_of_reader
5
(
6
char
reader_name[Z_MAX_USERD_NAME],
7
int
*two_fields
8
)
9
{
10
#ifdef ENSIGHTDEBUG
11
Info
<<
"Entering: USERD_get_name_of_reader"
<<
endl
<<
flush
;
12
#endif
13
14
strncpy(reader_name,
readerName
, Z_MAX_USERD_NAME);
15
*two_fields = FALSE;
16
17
return
Z_OK;
18
}
19
20
// ************************ vim: set sw=4 sts=4 et: ************************ //