home *** CD-ROM | disk | FTP | other *** search
/ IBM CD Showcase / OS2_CD_ROM.iso / smce0001 / rexx / readme.1st < prev    next >
Encoding:
Text File  |  1994-02-03  |  2.1 KB  |  57 lines

  1. -----------------------------GpfRexx Read Me file--------------------------------
  2.  
  3. This file contains information regarding GpfRexx product and
  4. documentation changes that have occurred to late to meet
  5. hardcopy production lead time.
  6.  
  7. When modifications or enhancements to GpfRexx are urgent or
  8. especialy useful, our choice is to include them in the
  9. production code as soon as they have been  thoroughly tested. 
  10. This insures that every user receives the latest version  of the
  11. product at the time of purchase.  The downside of this policy is
  12. that  the printed documentation may not always be at the same
  13. level as the shipping  version of the software.  In practice,
  14. this is often the case.  
  15.  
  16. The online documentation, on the other hand, is generally
  17. updated simultaneously  with the code.  In the rare case when
  18. this does not happen, notes explaining any new features will be
  19. found here.
  20.  
  21. IMPORTANT: In the event of discrepensies between the printed
  22. documentation and the online documentation or help, assume the
  23. online information is the most  current.  This file will contain
  24. information relating to the latest changes and, if needed,
  25. information omitted even from the onlines.
  26.  
  27. -----------------------------In this release-------------------------------------
  28. NEW FUNCTIONS:
  29.  
  30. Threads:
  31.     SetPriority(TaskID,Delta,Scope)
  32.     KillThread(TaskID)
  33.  
  34. Named Pipes:
  35.     CreateNPipe('ObjectPipe','Pipe')
  36.     ConnectNPipe('ObjectPipe')
  37.     DisConnectNPipe('ObjectName')
  38.     ReadNPipe('ObjectPipe')
  39.     WriteNPipe('ObjectPipe',Data)
  40.     TransactNPipe('ObjectPipe',)
  41.     OpenNPipe('ObjectPipe','Pipe')
  42.     CloseNPipe('ObjectPipe')
  43.     WaitNPipe('Pipe')
  44.  
  45. National Language Support: ** not included in the online documentation **
  46.  
  47.     SetHelpInstance(FileName)
  48.     FileName = any valid help file (.HLP) compiled with IPFC
  49.  
  50.     Usage: SetHelpInstance('NewFile.Hlp');
  51.  
  52. SetHelpInstance is used to change the current Help system at run
  53. time.  This function is typically used to replace the default
  54. Help of an application with an alternate Help file created in a 
  55. language differing from the original implementation.
  56.  
  57.