File: xmwrap.c

package info (click to toggle)
pgplot5 5.2-13
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 6,280 kB
  • ctags: 5,903
  • sloc: fortran: 37,938; ansic: 18,809; sh: 1,147; objc: 532; makefile: 363; perl: 234; pascal: 233; tcl: 178; awk: 51; csh: 25
file content (20 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (30)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
void xwdriv_();

/*
 * This is a wrapper function used to call the /xmotif driver from
 * Absoft FORTRAN (NeXT).
 *--
 * 24-Mar-1997 - [mcs]
 */
void XMDRIV(ifunc,   rbuf,   nbuf,   chr,   lchr,   mode,
	  w_ifunc, w_rbuf, w_nbuf, w_chr, w_lchr, w_mode)
 int *ifunc;
 float *rbuf;
 int *nbuf;
 char *chr;
 int *lchr;
 int w_ifunc, w_rbuf, w_nbuf, w_chr, w_lchr, w_mode;  /* Argument widths */
{
  xmdriv_(ifunc, rbuf, nbuf, chr, lchr, mode, w_chr);
  return;
}