FPEnvClearExceptionMethod

Applies to:uCalc Transform
Class:uCalc
Clears floating point exception(s) that were raised
Syntax
FPEnvClearException(Exceptions)
Parameters
Exceptions
Int32
(Default = 0)
Exceptions
Returns
Type: Int32
Clears floating point exception(s) that were raised
Remarks
DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="FPEnvClearException")> _

Private Function FPEnvClearException__(ByVal uCalcHandle As IntPtr, ByVal Exceptions As Int32  ) As  Int32
End Function
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="FPEnvClearException")]

protected static extern  Int32 FPEnvClearException_(IntPtr uCalcHandle,  Int32 Exceptions  );
            
{DLLImport}function FPEnvClearException__(uCalcHandle: System.Pointer; Exceptions: Int32):  Int32; cdecl; external uCalcDLL name 'FPEnvClearException';

            
typedef  int32_t (* __FPEnvClearException)(void *uCalcHandle,  int32_t Exceptions  ); 

            
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "FPEnvClearException")]

static Int32 FPEnvClearException_(void *  uCalcHandle,  Int32 Exceptions);
            
Prev | Next