1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
$NetBSD: patch-ac,v 1.6 2000/11/10 00:40:35 wiz Exp $
--- dialog.h.orig Fri Aug 18 13:35:06 1995
+++ dialog.h
@@ -28,8 +28,12 @@
#ifdef ultrix
#include <cursesX.h>
#else
+#if defined(HAVE_TRUE_NCURSES)
+#include <ncurses.h>
+#else
#include <curses.h>
#endif
+#endif
/*
* Change these if you want
@@ -42,6 +46,7 @@
#define TAB 9
#define MAX_LEN 2048
#define BUF_SIZE (10*1024)
+#define MIN_DIALOG_WIDTH 24
#define MIN(x,y) (x < y ? x : y)
#define MAX(x,y) (x > y ? x : y)
@@ -151,6 +156,9 @@
void draw_shadow (WINDOW * win, int y, int x, int height, int width);
#endif
+int strheight (const char *p);
+int strwidth (const char *p);
+
int dialog_yesno (const char *title, const char *prompt, int height, int width);
int dialog_msgbox (const char *title, const char *prompt, int height,
int width, int pause);
@@ -196,6 +204,7 @@
extern __inline__ int
mouse_wgetch (WINDOW * win)
{
+return 0;
};
#define mouse_wgetch(w) wgetch(w)
|