1WMGETC(3NCARG) NCAR GRAPHICS WMGETC(3NCARG)
2
3
4
6 WMGETC - Retrieves the current character value of an internal parameter
7 of type character.
8
10 CALL WMGETC (PNAM,CVAL)
11
13 #include <ncarg/ncargC.h>
14
15 void c_wmgetc (char *pnam, char *cval, int len)
16
18 PNAM (an input constant or variable of type CHARACTER) specifies
19 the name of the parameter to get. The name must appear as
20 the first three characters of the string.
21
22 CVAL (an output variable of type CHARACTER) is the name of the
23 variable into which the value of the internal parameter
24 specified by PNAM is to be retrieved.
25
27 The C-binding argument descriptions are the same as the FORTRAN
28 argument descriptions with the following exception:
29
30 len The size of cval as dimensioned in the calling program.
31
33 This routine allows you to retrieve the current value of Wmap
34 parameters. For a complete list of parameters available in this
35 utility, see the wmap_params man page.
36
38 To use WMGETC or c_wmgetc, load the NCAR Graphics libraries ncarg,
39 ncarg_gks, and ncarg_c, preferably in that order.
40
42 Online: wmap, wmdflt, wmgetr, wmgeti, wmlabs, wmsetc, wmseti, wmsetr,
43 wmap_params
44
45 Hardcopy: WMAP - A Package for Producing Daily Weather Maps and
46 Plotting Station Model Data
47
49 Copyright (C) 1987-2007
50 University Corporation for Atmospheric Research
51
52 This documentation is free software; you can redistribute it and/or
53 modify it under the terms of the GNU General Public License as
54 published by the Free Software Foundation; either version 2 of the
55 License, or (at your option) any later version.
56
57 This software is distributed in the hope that it will be useful, but
58 WITHOUT ANY WARRANTY; without even the implied warranty of
59 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
60 General Public License for more details.
61
62 You should have received a copy of the GNU General Public License along
63 with this software; if not, write to the Free Software Foundation,
64 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
65
66
67
68UNIX January 1995 WMGETC(3NCARG)