home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 1.toast / pc / sample code / devices and hardware / disks / iso9660 / support.h < prev   
Encoding:
Text File  |  2000-06-23  |  1.3 KB  |  35 lines

  1. /*
  2.     File:        support.h
  3.     
  4.     Description:
  5.     
  6.     Author:        
  7.  
  8.     Copyright:     Copyright: © 1990-1999 by Apple Computer, Inc.
  9.                 all rights reserved.
  10.     
  11.     Disclaimer:    You may incorporate this sample code into your applications without
  12.                 restriction, though the sample code has been provided "AS IS" and the
  13.                 responsibility for its operation is 100% yours.  However, what you are
  14.                 not permitted to do is to redistribute the source as "DSC Sample Code"
  15.                 after having made changes. If you're going to re-distribute the source,
  16.                 we require that you make it clear in the source that the code was
  17.                 descended from Apple Sample Code, but that you've made changes.
  18.     
  19.     Change History (most recent first):
  20.                 6/24/99    Updated for Metrowerks Codewarror Pro 2.1(KG)
  21.  
  22. */
  23. void pStrCopy(StringPtr p1, StringPtr p2);
  24. short pStrLen(StringPtr p);
  25. short CreateISOName(char *dest, StringPtr src);
  26. Boolean HFSFile(StringPtr fn, short *vRefNum);
  27. void ClearOut(Ptr buffer, short count);
  28. void SpaceOut(Ptr buffer, short count);
  29. void CharCopy(char *dest, char *src, short length);
  30. long NormalizeLong(long incoming);
  31. short NormalizeWord(short incoming);
  32. void NormalizeVolumeName(char *someString);
  33. OSErr GetFileInfo(StringPtr name, short vRefNum, long *rsrcLength, long *dataLength, OSType *fType, OSType *fCreator, short *flags);
  34. OSErr GetFinderFlags(StringPtr name, short vRefNum, short *flags);
  35.