/********************************************************************
gf_DoSomething
<DESC> This function will accept the three parameters and
perform some complex mathematics on the variables. The
mathematics are complex and used from various parts of
the application. If a problem is encounted in the
computations then an exception is thrown.</DESC>
<RETURN> A return code to indicate what happened
<li> -1 failed
<li> 1 all ok</RETURN>
<ACCESS> Public
<ARGS> ai_One: Argument one is the first parameter passed to the
function and is used in the first stage of the
complex maths.
ai_Two: Argument two is the second parameter to the
function and is used in conjunction with the
first parameter in the maths.
ai_Three: Argument three is the third and final parameter
to the function and is used as a factor in the
calculation performed with ai_one and ai_two.</ARGS>
<USAGE> ll_RC = gf_DoSomething( 5, 9, 25 )</USAGE>
********************************************************************/
RETURN 0 |