33 lines
731 B
C++
33 lines
731 B
C++
|
// 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;
|
||
|
}
|
||
|
|