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 >
C/C++ Source or Header  |  1997-05-30  |  713b  |  33 lines

  1. // used in text mode versions, should never be called (just for linking)
  2.  
  3. #include <stdarg.h>
  4. #include <assert.h>
  5. #include "console.h"
  6. #include "gui.h"
  7.  
  8. int DLGGetFile(GView *v, char *Prompt, unsigned int BufLen, char *FileName, int Flags) {
  9.     assert(1==0);
  10.     return 0;
  11. }
  12.  
  13. int DLGPickChoice(GView *v, char *ATitle, int NSel, va_list ap, int Flags) {
  14.     assert(1==0);
  15.     return 0;
  16. }
  17.  
  18. int DLGGetFind(GView *View, SearchReplaceOptions &sr) {
  19.     assert(1==0);
  20.     return 0;
  21. }
  22.  
  23. int DLGGetFindReplace(GView *View, SearchReplaceOptions &sr) {
  24.     assert(1==0);
  25.     return 0;
  26. }
  27.  
  28. int DLGGetStr(GView *View, char *Prompt, unsigned int BufLen, char *Str, int HistId, int Flags) {
  29.     assert(1 == 0);
  30.     return 0;
  31. }
  32.  
  33.