home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Pascal / Snippets / PNL Libraries / Libraries / MoreFinderEvents / MoreFinderEvents.p < prev   
Encoding:
Text File  |  1996-09-23  |  1.2 KB  |  37 lines  |  [TEXT/CWIE]

  1. unit MoreFinderEvents.p;
  2.  
  3. interface
  4.  
  5.     uses
  6.         Types, Aliases;
  7.  
  8.     function MFE_Reveal( what: AliasHandle ): OSErr;
  9.     function MFE_PutAway( what: AliasHandle ): OSErr;
  10.     function MFE_OpenGetInfo( what: AliasHandle ): OSErr;
  11.     function MFE_OpenSharing( what: AliasHandle ): OSErr;
  12.     function MFE_CloseWindow( what: AliasHandle ): OSErr;
  13.     function MFE_CloseGetInfo( what: AliasHandle ): OSErr;
  14.     function MFE_CloseSharing( what: AliasHandle ): OSErr;
  15.     function MFE_MakeAlias( what: AliasHandle ): OSErr;
  16.     function MFE_Duplicate( what: AliasHandle ): OSErr;
  17.     function MFE_OpenSelection( what: AliasHandle ): OSErr;
  18.     function MFE_PrintSelection( what: AliasHandle ): OSErr;
  19.     function MFE_PageSetup( what: AliasHandle ): OSErr;
  20.     function MFE_PrintWindow( what: AliasHandle ): OSErr;
  21.  
  22.     function MFE_Move( aliasToDrag: AliasHandle, destAlias: AliasHandle ): OSErr;
  23.     function MFE_Copy( aliasToDrag: AliasHandle, destAlias: AliasHandle ): OSErr;
  24.  
  25.     function MFE_UnmountVolume( vRefNum: integer ): OSErr;
  26.  
  27.     function MFE_ShowClipboard: OSErr;
  28.     function MFE_HideClipboard: OSErr;
  29.     function MFE_ShowAbout: OSErr;
  30.     function MFE_HideAbout: OSErr;
  31.     function MFE_Sleep: OSErr;
  32.     function MFE_Restart: OSErr;
  33.     function MFE_ShutDown    : OSErr;
  34.     function MFE_EmptyTrash: OSErr;
  35.  
  36. end.
  37.