home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / INSTALL / WIN95.INS < prev    next >
Encoding:
Text File  |  1995-09-27  |  1.0 KB  |  35 lines

  1. /* Copyright (c) Oracle Corporation 1993.  All Rights Reserved */
  2. /*****************************************************************************
  3.   NAME
  4.     win95.ins - V3 common installation script for Windows 95 products
  5.  
  6.   DESCRIPTION
  7.     This script performs common installation functionality across product
  8.     INS scripts.  It makes sure that any and all variables in the list
  9.     'check_vars' are bound, and prints a failure message if they are not.
  10.  
  11.   OWNER
  12.      Kush Jain
  13.  
  14.   MODIFIED    DD-MMM-YY  Reason
  15.    sagarwal   11-JUL-95  Modified from nt.ins
  16.    kjain      18-FEB-93  Created from windows.ins
  17. *****************************************************************************/
  18.  
  19.  
  20. {
  21.   ui_product(product_label);
  22.  
  23.   {
  24.     if (not(same_version(vrf_ratchet,ins_ratchet)))
  25.       signal('UNBOUND_VARIABLE);
  26.   }
  27.     [ 'UNBOUND_VARIABLE: 
  28.       {
  29.     information_dialog(instantiate(unbound_message),unbound_content,
  30.                instantiate(unbound_help));
  31.         signal('failure,cancel_prompt01);
  32.       }
  33.     ]
  34. }
  35.