#include <curses.h>
Go to the source code of this file.
Data Structures | |
struct | _Wparams |
Defines | |
#define | CURSESDEV_XIO_CREATEWINDOW 0 |
Functions | |
void | CursesDevInit (void) |
IOCB * | CioAttatchWindow (char *devname, WINDOW *pW) |
void | InitWParams (struct _Wparams *pWP, int xpos, int ypos, int xsize, int ysize, int fg, int bg, int mode) |
Definition in file CursesDev.h.
#define CURSESDEV_XIO_CREATEWINDOW 0 |
XIO Command:Create Window for open channel
Definition at line 12 of file CursesDev.h.
Referenced by WXio().
void CursesDevInit | ( | void | ) |
void InitWParams | ( | struct _Wparams * | pWP, | |
int | xpos, | |||
int | ypos, | |||
int | xsize, | |||
int | ysize, | |||
int | fg, | |||
int | bg, | |||
int | mode | |||
) |
Initialize Windows Parameter Block
pWP | pointer to windows parameter block to initialize | |
xpos | X coordinate for upper left hand corner of window | |
ypos | Y coordinate for upper left hand corner of window | |
xsize | Horizontal width of window (including border) | |
ysize | Vertical height of window (including border) | |
fg | Forground color (color of characters) | |
bg | Background color (color of screen) | |
mode | border=1, no border = 0 |
Definition at line 216 of file CursesDev.c.
References _Wparams::bg, _Wparams::fg, _Wparams::mode, _Wparams::xpos, _Wparams::xsize, _Wparams::ypos, and _Wparams::ysize.