home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / csso0301.zip / CSSPATH / KCFILELB.HSS < prev    next >
Text File  |  2000-02-07  |  2KB  |  49 lines

  1. /*  Copyright (c) 1998-2000 IBK-Landquart-Switzerland. All rights reserved.
  2.  *
  3.  *  Module      :  KcFileLb.hss
  4.  *  Application :  CSS File Library: Header
  5.  *  Author      :  Peter Koch, IBK
  6.  *
  7.  *  Date        Description                                 Who
  8.  *  --------------------------------------------------------------------------
  9.  *  Feb 1998    First release                               P.Koch, IBK
  10.  *  Feb 1998    V0.11: +fileCopy                            P.Koch, IBK
  11.  *  May 1998    V1.0: (not other changes)                   P.Koch, IBK
  12.  *  Jan 2000    V1.1: Added fileFlush                       P.Koch, IBK
  13.  *  Feb 2000    V2.00                                       P.Koch, IBK
  14.  */
  15.  
  16. extern const fileVersion;
  17.  
  18. extern const fileStdIn;
  19. extern const fileStdOut;
  20. extern const fileStdErr;
  21.  
  22. extern const fileOpenRead;
  23. extern const fileOpenWrite;
  24. extern const fileOpenAppend;
  25. extern const fileOpenTrunc;
  26. extern const fileOpenOld;
  27. extern const fileOpenNew;
  28. extern const fileOpenBinary;
  29.  
  30. fileClose(const handle);
  31. fileCopy(const source, const dest);
  32. fileDelete(const filename);
  33. fileDelDir(const dirname);
  34. fileEof(const handle);
  35. fileFlush(const handle);
  36. fileInfo(const filename);
  37. fileLocate(const filename, const varname);
  38. fileMakeDir(const dirname);
  39. fileOpen(const filename, const mode);
  40. fileRead(const handle, [const count]);
  41. fileReadLine(const handle);
  42. fileReadPos(const handle, [const newpos]);
  43. fileRename(const oldname, const newname);
  44. fileTempName();
  45. fileWrite(const handle, const data);
  46. fileWriteLine(const handle, [const data]);
  47. fileWritePos(const handle, [const newpos]);
  48.  
  49.