LINE.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /******************************************************************************
  2. *       This is a part of the Microsoft Source Code Samples. 
  3. *       Copyright (C) 1993-1997 Microsoft Corporation.
  4. *       All rights reserved. 
  5. *       This source code is only intended as a supplement to 
  6. *       Microsoft Development Tools and/or WinHelp documentation.
  7. *       See these sources for detailed information regarding the 
  8. *       Microsoft samples programs.
  9. ******************************************************************************/
  10. /*
  11.  * LINE.H
  12.  */
  13. typedef struct fileline FAR * LINE;
  14. LINE line_new(LPSTR text, int linelength, UINT linenr, LIST list);
  15. void line_delete(LINE line);
  16. void line_reset(LINE line);
  17. BOOL line_compare(LINE line1, LINE line2);
  18. BOOL line_link(LINE line1, LINE line2);
  19. LPSTR line_gettext(LINE line);
  20. int line_gettabbedlength(LINE line, int tabstops);
  21. DWORD line_gethashcode(LINE line);
  22. LINE line_getlink(LINE line);
  23. UINT line_getlinenr(LINE line);
  24. BOOL line_isblank(LINE line);