added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / libs / muimaster / classes / balance_private.h
blob869e6db3a667d6c7f4e90b5b93d6e2a7fbc22ceb
1 #ifndef _BALANCE_PRIVATE_H_
2 #define _BALANCE_PRIVATE_H_
4 typedef enum
6 NOT_CLICKED,
7 CLICKED,
8 SHIFT_CLICKED,
9 } State;
11 /*** Instance data **********************************************************/
12 struct Balance_DATA
14 struct MUI_EventHandlerNode ehn;
15 ULONG horizgroup;
16 State state;
17 LONG clickpos;
18 LONG lastpos;
19 LONG total_weight;
20 LONG first_bound;
21 LONG second_bound;
22 struct List *objs;
23 Object *obj_before;
24 Object *obj_after;
25 LONG lsum;
26 LONG oldWeightA;
27 LONG oldWeightB;
28 LONG rsum;
29 LONG lsize;
30 LONG rsize;
31 WORD lsiblings;
32 WORD rsiblings;
33 WORD lazy;
36 #endif /* _BALANCE_PRIVATE_H_ */