Subversion Repositories DevTools

Rev

Rev 1530 | Details | Compare with Previous | 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   : postremove.rul
12
//    Description : InstallShield script
13
//
14
////////////////////////////////////////////////////////////////////////////////
15
 
16
///////////////////////////////////////////////////////////////////////////////
17
//
18
// Function: postremove
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 postremove();
25
 
26
function postremove()
27
 
28
    STRING szMySrcFile;
29
    STRING szMyDstFile; 
30
    STRING szResult;
31
    NUMBER nzResult;
32
 
33
begin                 
34
 
35
    //MessageBox("executing the postremove script.", INFORMATION);             
36
 
37
    // lets remove our patch.
38
    //
39
    if ( islib_patchPostRemove() < 0 )
40
    then  
41
 
42
        MessageBox("Patch postremove encountered severe errors." +
43
                   "\n\nContact you system administrator to check your installation.", SEVERE);        
44
        abort;                   
45
 
46
    endif;      
47
 
48
end;
49
 
50
 
51