home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / TOOLKIT / CREXX / DEVINFO / DEVINFO.DEF < prev    next >
Text File  |  1994-11-17  |  710b  |  20 lines

  1. ; DEVINFO.DEF
  2. ; This DEF file is used to create DEVINFO.DLL, which is a sample
  3. ; program that shows how to create REXX subcommand handlers and
  4. ; use the REXX variable pool.
  5.  
  6. ; The INITINSTANCE option forces the run-time set up to be done for
  7. ; each process this DLL is used in.  This means that the DLL may be
  8. ; loaded multiple times, and each will work.
  9. LIBRARY DEVINFO INITINSTANCE
  10.  
  11. DESCRIPTION '@ Copyright IBM Corp. 1991 All Rights Reserved Licensed Materials-Property Of IBM.'
  12. PROTMODE
  13. DATA MULTIPLE NONSHARED LOADONCALL
  14.  
  15. ; Note that the exact case of the exported routine name given here
  16. ; must match the case of the function as written in the source
  17. ; program.
  18. EXPORTS
  19.        DevInfo
  20.