home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 9.ddi / TVSRC.ZIP / EDITSTAT.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  1.3 KB  |  32 lines

  1. /*------------------------------------------------------------*/
  2. /* filename -       editstat.cpp                              */
  3. /*                                                            */
  4. /* defines the static members of class TEditor                */
  5. /*------------------------------------------------------------*/
  6.  
  7. /*------------------------------------------------------------*/
  8. /*                                                            */
  9. /*    Turbo Vision -  Version 1.0                             */
  10. /*                                                            */
  11. /*                                                            */
  12. /*    Copyright (c) 1991 by Borland International             */
  13. /*    All Rights Reserved.                                    */
  14. /*                                                            */
  15. /*------------------------------------------------------------*/
  16.  
  17. #define Uses_TEditor
  18. #define Uses_TEditorDialog
  19. #include <tv.h>
  20.  
  21. ushort defEditorDialog( int, ... )
  22. {
  23.     return cmCancel;
  24. }
  25.  
  26. TEditorDialog near TEditor::editorDialog = defEditorDialog;
  27. ushort near TEditor::editorFlags = efBackupFiles | efPromptOnReplace;
  28. char near TEditor::findStr[maxFindStrLen] = "";
  29. char near TEditor::replaceStr[maxReplaceStrLen] = "";
  30. TEditor * near TEditor::clipboard = 0;
  31.  
  32.