Rev 8878 | Rev 15297 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 8878 | Rev 14873 | ||
---|---|---|---|
Line 57... | Line 57... | ||
57 | extern double xscale, yscale, xstart, ystart; |
57 | extern double xscale, yscale, xstart, ystart; |
58 | extern int sizex, sizey, saved; |
58 | extern int sizex, sizey, saved; |
59 | extern int color_white, color_black, color_bounder, color_frame, lstep; |
59 | extern int color_white, color_black, color_bounder, color_frame, lstep; |
60 | extern int width, width2; |
60 | extern int width, width2; |
61 | extern double tend, tstart, tstep, plotjump, animstep; |
61 | extern double tend, tstart, tstep, plotjump, animstep; |
62 | int tranged; |
- | |
63 | extern int vimg_enable, vimg_ready; |
62 | extern int vimg_enable, vimg_ready; |
64 | extern FILE *vimgf; |
63 | extern FILE *vimgf; |
65 | extern char vimgfilename[1024], imagefilename[1024]; |
64 | extern char vimgfilename[1024], imagefilename[1024]; |
- | 65 | /** |
|
- | 66 | * GK 2020-04-18 |
|
- | 67 | * defining global variables in a header file is no longer allowed |
|
- | 68 | * with gcc-10, so thses are commented out, and replaced further by |
|
- | 69 | * extern clauses. |
|
- | 70 | int tranged; |
|
66 | double parallogram_fonda[6]; |
71 | double parallogram_fonda[6]; |
67 | char *substit(char *p); |
72 | char *substit(char *p); |
- | 73 | * the actual variable "tranged" is defined in flydraw.c, line 32 |
|
- | 74 | * the actual value of "parallogram_fonda" is defined in flydraw.c, line 63 |
|
- | 75 | * the actual variable "substit" is defined in flydraw.c, line 83 |
|
- | 76 | **/ |
|
- | 77 | extern int tranged; |
|
- | 78 | extern double parallogram_fonda[6]; |
|
- | 79 | extern char *substit(char *p); |
|
- | 80 | ||
68 | void output(void); |
81 | void output(void); |
69 | /* from wimg.c */ |
82 | /* from wimg.c */ |
70 | void vimg_init (void); |
83 | void vimg_init (void); |
71 | void vimg_close (void); |
84 | void vimg_close (void); |
72 | void vimg_arc (double x0, double y0, double rx, double ry, double a1, double a2); |
85 | void vimg_arc (double x0, double y0, double rx, double ry, double a1, double a2); |