home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 113 / EnigmaAmiga113CD.iso / software / sviluppo / easygui_os12 / source / hybrid / utility.e < prev    next >
Encoding:
Text File  |  2000-06-11  |  722 b   |  26 lines

  1. /* RST: opening and closing utility library
  2.  
  3.    Please do not redistribute modified versions of this code. If you have
  4.    any ideas how to make things better contact me at metamonk@yahoo.com.
  5.  
  6.    Also, please do not distribute further 'hybrid/#?' modules since there
  7.    is already a large amount of additional stuff in work. Contact me...
  8.  
  9.    This code is Copyright (c) 2000, Ralf 'hippie2000' Steines, and
  10.    inherits the legal state from the original EasyGUI disctribution. */
  11.  
  12. -> exports utilitybase to caller/other modules
  13.  
  14. OPT MODULE
  15. OPT EXPORT
  16.  
  17. MODULE 'utility'
  18.  
  19. PROC openUtility()
  20.   utilitybase:=OpenLibrary('utility.library',36)
  21. ENDPROC
  22.  
  23. PROC closeUtility()
  24.   IF utilitybase THEN CloseLibrary(utilitybase)
  25. ENDPROC
  26.