home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / windiff / line.h < prev    next >
Text File  |  1997-10-05  |  1KB  |  29 lines

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