This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
fte/g_nodlg.cpp

33 lines
731 B
C++
Raw Permalink Normal View History

// used in text mode versions, should never be called (just for linking)
#include <stdarg.h>
#include <assert.h>
#include "console.h"
#include "gui.h"
int DLGGetFile(GView *v, const char *Prompt, unsigned int BufLen, char *FileName, int Flags) {
assert(1==0);
return 0;
}
int DLGPickChoice(GView *v, const char *ATitle, int NSel, va_list ap, int Flags) {
assert(1==0);
return 0;
}
int DLGGetFind(GView *View, SearchReplaceOptions &sr) {
assert(1==0);
return 0;
}
int DLGGetFindReplace(GView *View, SearchReplaceOptions &sr) {
assert(1==0);
return 0;
}
int DLGGetStr(GView *View, const char *Prompt, unsigned int BufLen, char *Str, int HistId, int Flags) {
assert(1 == 0);
return 0;
}