Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1530 dpurdie 1
///////////////////////////////////////////////////////////////////////////////
2
//
3
//	 ######  #####    ####
4
//	 #       #    #  #    #
5
//	 #####   #    #  #
6
//	 #       #####   #  ###
7
//	 #       #   #   #    #
8
//	 ######  #    #   ####
9
//
10
//
11
//    File Name   : postinstall.rul
12
//    Description : InstallShield script
13
//
14
////////////////////////////////////////////////////////////////////////////////
15
 
16
///////////////////////////////////////////////////////////////////////////////
17
//
18
// Function: postinstall
19
//
20
// Purpose: Add all configuration data to the properties files supplied.
21
//			General purpose function, calls specific functions to reduce code.
22
//
23
///////////////////////////////////////////////////////////////////////////////
24
export prototype postinstall();
25
 
26
function postinstall()
27
 
28
begin 
29
 
30
    //MessageBox("postinstall() executing.", INFORMATION);     
31
 
32
    // lets install our patch.
33
    //
34
    if ( islib_patchPostInstall() < 0 )
35
    then  
36
 
37
        MessageBox("Patch postinstall encountered severe errors." +
38
                   "\n\nInstallation will abort.", SEVERE);
39
        abort;
40
 
41
    endif;      	                                                                                              
42
 
43
end;
44
 
45
 
46