summaryrefslogtreecommitdiff
path: root/misc/dialog/patches/patch-ac
blob: e329b73c7da2204541314a3cbec76fda386f22e5 (plain)
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
$NetBSD: patch-ac,v 1.2 1998/08/07 11:10:14 agc Exp $

--- dialog.h.orig	Fri Jan 23 17:37:12 1998
+++ dialog.h	Fri Jan 23 18:14:38 1998
@@ -28,8 +28,12 @@
 #ifdef ultrix
 #include <cursesX.h>
 #else
+#ifdef __NetBSD__
+#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)
 
@@ -150,6 +155,9 @@
 #ifdef HAVE_NCURSES
 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,