#ifndef NEDIT_DIALOGF_H_INCLUDED
#define NEDIT_DIALOGF_H_INCLUDED
#include <X11/Intrinsic.h>
#include <sys/param.h>
#define DF_ERR 1
#define DF_INF 2
#define DF_MSG 3
#define DF_QUES 4
#define DF_WARN 5
#define DF_PROMPT 6
#define DF_MAX_MSG_LENGTH (2047 + MAXPATHLEN)
#define DF_MAX_PROMPT_LENGTH 255
unsigned DialogF(int dialog_type, Widget parent, unsigned n, const char* title,
const char* msgstr, ...);
void SetDialogFPromptHistory(char **historyList, int nItems);
#endif