|
Lines 378-384
typedef struct RCW_t { // the 'window' portion of an rcfile
Link Here
|
| 378 |
msgsclr, // " in msgs/pmts |
378 |
msgsclr, // " in msgs/pmts |
| 379 |
headclr, // " in cols head |
379 |
headclr, // " in cols head |
| 380 |
taskclr; // " in task rows |
380 |
taskclr; // " in task rows |
| 381 |
char winname [WINNAMSIZ], // name for the window, user changeable |
381 |
char winname [WINNAMSIZ+1], // name for the window, user changeable |
| 382 |
fieldscur [PFLAGSSIZ]; // the fields for display & their order |
382 |
fieldscur [PFLAGSSIZ]; // the fields for display & their order |
| 383 |
} RCW_t; |
383 |
} RCW_t; |
| 384 |
|
384 |
|
|
Lines 427-433
typedef struct WIN_t {
Link Here
|
| 427 |
capclr_rowhigh [CLRBUFSIZ], // are only used when this |
427 |
capclr_rowhigh [CLRBUFSIZ], // are only used when this |
| 428 |
capclr_rownorm [CLRBUFSIZ], // window is the 'Curwin'! |
428 |
capclr_rownorm [CLRBUFSIZ], // window is the 'Curwin'! |
| 429 |
cap_bold [CAPBUFSIZ], // support for View_NOBOLD toggle |
429 |
cap_bold [CAPBUFSIZ], // support for View_NOBOLD toggle |
| 430 |
grpname [GRPNAMSIZ], // window number:name, printable |
430 |
grpname [GRPNAMSIZ+1], // window number:name, printable |
| 431 |
#ifdef USE_X_COLHDR |
431 |
#ifdef USE_X_COLHDR |
| 432 |
columnhdr [ROWMINSIZ], // column headings for procflgs |
432 |
columnhdr [ROWMINSIZ], // column headings for procflgs |
| 433 |
#else |
433 |
#else |
| 434 |
- |
|
|