~ubuntu-branches/ubuntu/wily/eso-midas/wily-proposed

« back to all changes in this revision

Viewing changes to libsrc/idi/cidi/iic-2.fc

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*===========================================================================
 
2
  Copyright (C) 1995-2009 European Southern Observatory (ESO)
 
3
 
 
4
  This program is free software; you can redistribute it and/or 
 
5
  modify it under the terms of the GNU General Public License as 
 
6
  published by the Free Software Foundation; either version 2 of 
 
7
  the License, or (at your option) any later version.
 
8
 
 
9
  This program is distributed in the hope that it will be useful,
 
10
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
  GNU General Public License for more details.
 
13
 
 
14
  You should have received a copy of the GNU General Public 
 
15
  License along with this program; if not, write to the Free 
 
16
  Software Foundation, Inc., 675 Massachusetts Ave, Cambridge, 
 
17
  MA 02139, USA.
 
18
 
 
19
  Correspondence concerning ESO-MIDAS should be addressed as follows:
 
20
        Internet e-mail: midas@eso.org
 
21
        Postal address: European Southern Observatory
 
22
                        Data Management Division 
 
23
                        Karl-Schwarzschild-Strasse 2
 
24
                        D 85748 Garching bei Muenchen 
 
25
                        GERMANY
 
26
===========================================================================*/
 
27
 
 
28
 
 
29
ROUTINE IICINC(dsplay,chan,cursno,shape,colour,xc,yc,idst)
 
30
int *dsplay;
 
31
int *chan;
 
32
int *cursno;
 
33
int *shape;
 
34
int *colour;
 
35
int *xc;
 
36
int *yc;
 
37
int *idst;
 
38
 
 
39
{
 
40
int  IICINC_C();
 
41
 
 
42
*idst = IICINC_C(*dsplay,*chan,*cursno,*shape,*colour,*xc,*yc);
 
43
return 0;
 
44
}
 
45
 
 
46
ROUTINE IICSCV(dsplay,cursno,vis,idst)
 
47
int *dsplay;
 
48
int *cursno;
 
49
int *vis;
 
50
int *idst;
 
51
 
 
52
{
 
53
int  IICSCV_C();
 
54
 
 
55
*idst = IICSCV_C(*dsplay,*cursno,*vis);
 
56
return 0;
 
57
}
 
58
 
 
59
ROUTINE IICWCP(dsplay,chan,cursno,xc,yc,idst)
 
60
int *dsplay;
 
61
int *chan;
 
62
int *cursno;
 
63
int *xc;
 
64
int *yc;
 
65
int *idst;
 
66
 
 
67
{
 
68
int  IICWCP_C();
 
69
 
 
70
*idst = IICWCP_C(*dsplay,*chan,*cursno,*xc,*yc);
 
71
return 0;
 
72
}
 
73
 
 
74
 
 
75
 
 
76
ROUTINE IICRCP(dsplay,chan,cursno,xc,yc,memo,idst)
 
77
int *dsplay;
 
78
int *chan;
 
79
int *cursno;
 
80
int *xc;
 
81
int *yc;
 
82
int *memo;
 
83
int *idst;
 
84
 
 
85
{
 
86
int  IICRCP_C();
 
87
 
 
88
*idst = IICRCP_C(*dsplay,*chan,*cursno,xc,yc,memo);
 
89
return 0;
 
90
}