editutil.h
上传用户:caisha3
上传日期:2013-09-21
资源大小:208739k
文件大小:1k
源码类别:

Windows编程

开发平台:

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);