shorts.c revision e739ac0589b4fb43561f801c4faba8c1b89f8680
1
2#include <stdio.h>
3
4typedef struct { short ot; short ob; short nt; short nb; } Stuff;
5
6void PaintThumb( Stuff* w )
7{
8    short oldtop = w->ot;
9    short oldbot = w->ob;
10    short newtop = w->nt;
11    short newbot = w->nb;
12
13        if (newtop < oldtop) { fprintf(stderr,"case1\n");
14	//	    FillArea(w, newtop, XawMin(newbot, oldtop), 1);
15	}
16	if (newtop > oldtop) { fprintf(stderr,"case2\n");
17	//	    FillArea(w, oldtop, XawMin(newtop, oldbot), 0);
18	}
19	if (newbot < oldbot) { fprintf(stderr,"case3\n");
20	//	    FillArea(w, XawMax(newbot, oldtop), oldbot, 0);
21	}
22	if (newbot > oldbot) { fprintf(stderr,"case4\n");
23	//	    FillArea(w, XawMax(newtop, oldbot), newbot, 1);
24	}
25}
26
27int main ( void )
28{
29  Stuff st;
30  st.ot = -332;
31  st.ob = -301;
32  st.nt = 0;
33  st.nb = 31;
34  PaintThumb( &st );
35  return 0;
36}
37