dialog.h (1c5af5cf9308fff327f52c7efd2dfa732d370871) | dialog.h (694c49a7c01cc87194be40cb26404b58b68c291c) |
---|---|
1/* 2 * dialog.h -- common declarations for all dialog modules 3 * 4 * AUTHOR: Savio Lam (lam836@cs.cuhk.hk) 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 --- 12 unchanged lines hidden (view full) --- 21#include <sys/types.h> 22#include <fcntl.h> 23#include <unistd.h> 24#include <ctype.h> 25#include <stdlib.h> 26#include <string.h> 27#include <stdbool.h> 28 | 1/* 2 * dialog.h -- common declarations for all dialog modules 3 * 4 * AUTHOR: Savio Lam (lam836@cs.cuhk.hk) 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 --- 12 unchanged lines hidden (view full) --- 21#include <sys/types.h> 22#include <fcntl.h> 23#include <unistd.h> 24#include <ctype.h> 25#include <stdlib.h> 26#include <string.h> 27#include <stdbool.h> 28 |
29#ifndef KBUILD_NO_NLS 30# include <libintl.h> 31#else 32# define gettext(Msgid) ((const char *) (Msgid)) 33#endif 34 | |
35#ifdef __sun__ 36#define CURS_MACROS 37#endif 38#include <ncurses.h> 39 40/* 41 * Colors in ncurses 1.9.9e do not work properly since foreground and 42 * background colors are OR'd rather than separately masked. This version --- 215 unchanged lines hidden --- | 29#ifdef __sun__ 30#define CURS_MACROS 31#endif 32#include <ncurses.h> 33 34/* 35 * Colors in ncurses 1.9.9e do not work properly since foreground and 36 * background colors are OR'd rather than separately masked. This version --- 215 unchanged lines hidden --- |