home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 5 Edit
/
05-Edit.zip
/
ftes46b5.zip
/
ftes46b5
/
src
/
g_nodlg.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-30
|
713b
|
33 lines
// 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, char *Prompt, unsigned int BufLen, char *FileName, int Flags) {
assert(1==0);
return 0;
}
int DLGPickChoice(GView *v, 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, char *Prompt, unsigned int BufLen, char *Str, int HistId, int Flags) {
assert(1 == 0);
return 0;
}