home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / wb / assignwedge / product-info < prev   
Encoding:
Fred Fish's Product-Info  |  1995-10-23  |  2.3 KB  |  92 lines

  1. # This file contains product information that can be used by
  2. # KingFisher 2.0 and other similar tools.
  3.  
  4. .name
  5. AssignWedge
  6. .type
  7. OS Utility
  8. .short
  9. An AssignX type clone
  10. .description
  11. On the Amiga, many programs require a particular logical device name or
  12. assignment to point to a drawer or volume to find their data. If you forget
  13. to place such an assignment in your User-Startup file or take care of it by
  14. hand you will sooner or later see the familiar "Please insert volume ... in
  15. any drive" requester popping up. AssignWedge `wedges' into the operating
  16. system routine responsible for bringing up this requester, giving you the
  17. choice to take one of the following actions using the mouse:
  18.  
  19.    · Retry
  20.  
  21.      If you have taken care of the assignment or device yourself,
  22.      this will cause the action that brought up the requester
  23.      to be repeated.
  24.  
  25.    · Assign
  26.  
  27.      This will create an assignment under the name displayed in
  28.      the requester. You just have to pick the drawer to tie it to.
  29.  
  30.    · Mount
  31.  
  32.      Assuming that the device displayed in the requester can be
  33.      mounted, this will execute the AmigaDOS `Mount' command
  34.      and then repeat the action that brought up the requester.
  35.  
  36.    · Deny
  37.  
  38.      This effectively denies the program that brought up this
  39.      requester to refer to the device in question. Whenever
  40.      it refers to it, no requester will appear asking you to
  41.      insert the volume in question. Instead, the program to
  42.      ask for the volume will see any attempt to access the
  43.      volume failing.
  44.  
  45.    · Cancel
  46.  
  47.      Denies the program request to access the volume. It's
  48.      as simple as that.
  49. .version
  50. 1.5
  51. .date
  52. 1995.01.18
  53. .author
  54. Olaf Barthel
  55. .requirements
  56. Requires OS2.04+
  57. .reference
  58. AmigaLibDisk689:AssignWedge/
  59. 1.1
  60. .distribution
  61. Public Domain
  62. .address
  63. Brabeckstrasse 35
  64. D-30559 Hannover
  65. Federal Republic of Germany
  66. .email
  67. olsen@sourcery.han.de
  68. .source
  69. Includes source in C and Assembler
  70. .docs
  71. AssignWedge.guide
  72. .described-by
  73. Dan Fish (daf@starfish.amigalib.com)
  74. .submittal
  75. Downloaded via ftp from wuarchive.wustl.edu.
  76. .aminet-dir
  77. util/wb
  78. .execute
  79. set choice `RequestChoice "AssignWedge" "Please select an option" "View Guide" "Run Program" "Cancel"`
  80.  
  81. if $choice EQ "0"
  82.   quit 5
  83. endif
  84.  
  85. if $choice EQ "1"
  86.   MetaTool AssignWedge.guide GUIDE
  87. endif
  88.  
  89. if $choice EQ "2"
  90.   wbrun AssignWedge
  91. endif
  92.