home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 375.lha / MRARPFile_v1.1 / functions.diff < prev    next >
Text File  |  1990-05-02  |  1KB  |  36 lines

  1. 122c122
  2. < long Write(BPTR file, char *buffer, long length);
  3. ---
  4. > long Write(BPTR file, const char *buffer, long length);
  5. 131,135c131,135
  6. < long Examine(BPTR lock, BPTR fileInfoBlock);
  7. < long ExNext(BPTR lock, BPTR fileInfoBlock);
  8. < long Info(BPTR lock, struct InfoData *parameterBlock);
  9. < BPTR CreateDir(const char *name);
  10. < BPTR CurrentDir(struct FileLock *lock);
  11. ---
  12. > long Examine(BPTR lock, struct FileInfoBlock *fileInfoBlock);
  13. > long ExNext(BPTR lock, struct FileInfoBlock *fileInfoBlock);
  14. > long Info(BPTR lock, struct InfoData *parameterBlock);
  15. > BPTR CreateDir(const char *name);
  16. > BPTR CurrentDir(BPTR lock);
  17. 149,150c149,151
  18. < struct FileLock * ParentDir(struct FileLock *lock);
  19. < long IsInteractive(struct FileHandle *file);
  20. ---
  21. > BPTR ParentDir(BPTR lock);
  22. > /* 03/11/90 - Changed "FileHandle *file" to "BPTR file". */
  23. > long IsInteractive(BPTR file);
  24. 233c234,235
  25. < struct MiscResource * OpenResource(const char *resName, long version);
  26. ---
  27. > /* 02/27/90 - OpenResource was defined with a bogus version parameter. */
  28. > struct MiscResource * OpenResource(const char *resName);
  29. 254,255c256,258
  30. < void CopyMem(char *source, char *dest, long size);
  31. < void CopyMemQuick(char *source, char *dest, long size);
  32. ---
  33. > /* 04/15/90(MRR) - Changed source parameters to "const char *". */
  34. > void CopyMem(const char *source, char *dest, long size);
  35. > void CopyMemQuick(const char *source, char *dest, long size);
  36.