| typedef struct sbar_struct | /*Defined in vv_sys.h | */ | |
| { | |||
| PTR | parentp; | /*Parent of sbar (form, menu, etc) | */ |
| ULONG | flags; | /*scroll bar flags | */ |
| int | hmin; | /*the horizontal range minimum | */ |
| int | hmax; | /*the horizontal range maximum | */ |
| int | hval; | /*the horizontal current value | */ |
| int | vmin; | /*the vertical range minimum | */ |
| int | vmax; | /*the vertical range maximum | */ |
| int | vval; | /*the vertical current value | */ |
| } SBAR, *SBARP; | |||