editutil.h
Upload User: caisha3
Upload Date: 2013-09-21
Package Size: 208739k
Code Size: 1k
Category:

Windows Develop

Development Platform:

Visual C++

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2. ---*/
  3. /***********************************************************************
  4.     EDITUTIL.H
  5.     Interface routines to the editor.
  6. ***********************************************************************/
  7. // prototypes
  8. void PASCAL InsertEditLine(
  9.     int doc,
  10.     LPSTR EditText,
  11.     int y,
  12.     BOOL VisualUpdate);
  13. void PASCAL DeleteEditLine(
  14.     int doc,
  15.     int y,
  16.     BOOL VisualUpdate);
  17. void PASCAL AddEditLine(
  18.     int doc,
  19.     LPSTR EditText,
  20.     BOOL VisualUpdate);
  21. void PASCAL ReplaceEditLine(
  22.     int doc,
  23.     LPSTR EditText,
  24.     int y,
  25.     BOOL VisualUpdate);
  26. void PASCAL SetDocLines(
  27.     int doc,
  28.     int lines);