home *** CD-ROM | disk | FTP | other *** search
/ drawSTUDIO / drawSTUDIO.iso / mui / assign_mui < prev    next >
Encoding:
AmigaDOS Script File  |  1996-12-10  |  488 b   |  24 lines

  1. .key dummy
  2.  
  3. ;This assign assigns MUI to the CD
  4.  
  5. ;BEGIN MUI
  6. if exists "DrawStudioCD:MUI"
  7.    assign MUI: "DrawStudioCD:MUI"
  8.    if exists MUI:Libs
  9.       assign add LIBS: MUI:Libs
  10.    endif
  11.    if exists MUI:Locale
  12.       assign add LOCALE: MUI:Locale
  13.    endif
  14.    version >nil: exec.library 39
  15.    if not warn
  16.       if exists MUI:Docs
  17.          if exists HELP:dummy ; do not remove
  18.          endif                ; this entry!
  19.          assign add HELP: MUI:Docs
  20.       endif
  21.    endif
  22. endif
  23. ;END MUI
  24.