Subversion Repositories DevTools

Rev

Rev 1530 | Blame | Compare with Previous | Last modification | View Log | RSS feed

///////////////////////////////////////////////////////////////////////////////
//
//       ######  #####    ####
//       #       #    #  #    #
//       #####   #    #  #
//       #       #####   #  ###
//       #       #   #   #    #
//       ######  #    #   ####
//
//
//    File Name   : postremove.rul
//    Description : InstallShield script
//
////////////////////////////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////////////////////////
//
// Function: postremove
//
// Purpose: Add all configuration data to the properties files supplied.
//          General purpose function, calls specific functions to reduce code.
//
///////////////////////////////////////////////////////////////////////////////
export prototype postremove();

function postremove()

    STRING szMySrcFile;
    STRING szMyDstFile; 
    STRING szResult;
    NUMBER nzResult;
       
begin                 
             
    //MessageBox("executing the postremove script.", INFORMATION);             
    
    // lets remove our patch.
    //
    if ( islib_patchPostRemove() < 0 )
    then  
    
        MessageBox("Patch postremove encountered severe errors." +
                   "\n\nContact you system administrator to check your installation.", SEVERE);        
        abort;                   
        
    endif;      
         
end;