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 / file.h < prev    next >
Text File  |  1997-10-05  |  870b  |  26 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.  * FILE.H
  14.  */
  15.  
  16. /* handle to filedata */
  17. typedef struct filedata FAR * FILEDATA;
  18.  
  19. FILEDATA file_new(DIRITEM fiName, BOOL bRead);
  20. DIRITEM file_getdiritem(FILEDATA fi);
  21. void file_delete(FILEDATA fi);
  22. LIST file_getlinelist(FILEDATA fi);
  23. void file_discardlines(FILEDATA fi);
  24. void file_reset(FILEDATA fi);
  25.  
  26.