File: ghostscript.sra
Size: 767
Date: Tue, 06 Apr 2021 05:03:44 +0200
$PBExportHeader$ghostscript.sra
$PBExportComments$Generated Application Object
forward
global type ghostscript from application
end type
global transaction sqlca
global dynamicdescriptionarea sqlda
global dynamicstagingarea sqlsa
global error error
global message message
end forward

global type ghostscript from application
string appname = "ghostscript"
end type
global ghostscript ghostscript

on ghostscript.create
appname="ghostscript"
message=create message
sqlca=create transaction
sqlda=create dynamicdescriptionarea
sqlsa=create dynamicstagingarea
error=create error
end on

on ghostscript.destroy
destroy(sqlca)
destroy(sqlda)
destroy(sqlsa)
destroy(error)
destroy(message)
end on

event open;Open(w_main)

end event