opnsense-src/gnu/lib/libodialog/notify.c
Nathan Whitehorn 4c8945a06b Update dialog to version 20100428. This changes the license under which
dialog is distributed from GPLv2 to LGPLv2 and introduces a number of new
features and a new and better libdialog API. The existing libdialog will
be kept temporarily as libodialog for compatibility purposes until sade,
sysinstall and tzsetup have been either updated or replaced.

__FreeBSD_version is now 900030.

Discussed on:	-current
Approved by:	core
Obtained from:	http://invisible-island.net/dialog
2011-01-12 14:55:02 +00:00

53 lines
1.1 KiB
C

/*
* File: notify.c
* Author: Marc van Kempen
* Desc: display a notify box with a message
*
* Copyright (c) 1995, Marc van Kempen
*
* All rights reserved.
*
* This software may be used, modified, copied, distributed, and
* sold, in both source and binary form provided that the above
* copyright and these terms are retained, verbatim, as the first
* lines of this file. Under no circumstances is the author
* responsible for the proper functioning of this software, nor does
* the author assume any responsibility for damages incurred with
* its use.
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <dialog.h>
#include <stdio.h>
#include <stdlib.h>
void
dialog_notify(char *msg)
/*
* Desc: display an error message
*/
{
char *tmphlp;
WINDOW *w;
w = dupwin(newscr);
if (w == NULL) {
endwin();
fprintf(stderr, "\ndupwin(newscr) failed, malloc memory corrupted\n");
exit(1);
}
tmphlp = get_helpline();
use_helpline("Press enter or space");
dialog_mesgbox("Message", msg, -1, -1);
restore_helpline(tmphlp);
touchwin(w);
wrefresh(w);
delwin(w);
return;
} /* dialog_notify() */