Border and Line Structure

typedef struct border_struct /*Defined in vv_sys.h   */
{        
UCHAR up_ch; /*upper horizontal character   */
UCHAR low_ch; /*lower horizontal character   */
UCHAR lft_ch; /*left vertical character   */
UCHAR rt_ch; /*right vertical character   */
UCHAR uplft_ch; /*upper left corner character   */
UCHAR uprt_ch; /*upper right corner character   */
UCHAR lowrt_ch; /*lower right corner character   */
UCHAR lowlft_ch; /*lower left corner character   */
} BORDER, *BORDERPTR, *LINEPTR;      


Home Contents Previous Next