| 890 | boolean status_activefields[MAXBLSTATS]; |
| 891 | |
| 892 | void |
| 893 | genl_status_init(void) |
| 894 | { |
| 895 | int i; |
| 896 | |
| 897 | for (i = 0; i < MAXBLSTATS; ++i) { |
| 898 | status_vals[i] = (char *) alloc(MAXCO); |
| 899 | *status_vals[i] = '\0'; |
| 900 | status_activefields[i] = FALSE; |
| 901 | status_fieldfmt[i] = (const char *) 0; |
| 902 | } |
| 903 | /* Use a window for the genl version; backward port compatibility */ |
| 904 | WIN_STATUS = create_nhwindow(NHW_STATUS); |
| 905 | display_nhwindow(WIN_STATUS, FALSE); |
| 906 | } |
| 907 | |
| 908 | void |
| 909 | genl_status_finish(void) |
no test coverage detected