home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / kcss0012.zip / CSS / KCFILELB.HSS < prev    next >
Text File  |  1998-02-09  |  1KB  |  45 lines

  1. /*  Copyright (c) 1998 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.  */
  12.  
  13. extern const fileVersion;
  14.  
  15. extern const fileStdIn;
  16. extern const fileStdOut;
  17. extern const fileStdErr;
  18.  
  19. extern const fileOpenRead;
  20. extern const fileOpenWrite;
  21. extern const fileOpenAppend;
  22. extern const fileOpenTrunc;
  23. extern const fileOpenOld;
  24. extern const fileOpenNew;
  25. extern const fileOpenBinary;
  26.  
  27. fileClose(const handle);
  28. fileCopy(const source, const dest);
  29. fileDelete(const filename);
  30. fileDelDir(const dirname);
  31. fileEof(const handle);
  32. fileInfo(const filename);
  33. fileLocate(const filename, const varname);
  34. fileMakeDir(const dirname);
  35. fileOpen(const filename, const mode);
  36. fileRead(const handle, [const count]);
  37. fileReadLine(const handle);
  38. fileReadPos(const handle, [const newpos]);
  39. fileRename(const oldname, const newname);
  40. fileTempName();
  41. fileWrite(const handle, const data);
  42. fileWriteLine(const handle, [const data]);
  43. fileWritePos(const handle, [const newpos]);
  44.  
  45.