FPEnvGetExceptionMaskMethod

Applies to:uCalc Transform
Class:uCalc
Returns the floating point environment error mask
Syntax
FPEnvGetExceptionMask()
Parameters
Exception
(Default = Invalid)
Bitmask value consisting of one or more exception flags to raise
Returns
Type: Int32
Returns the floating point environment error mask
Remarks
DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="FPEnvGetExceptionMask")> _

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

protected static extern  Int32 FPEnvGetExceptionMask_(IntPtr uCalcHandle);
            
{DLLImport}function FPEnvGetExceptionMask__(uCalcHandle: System.Pointer):  Int32; cdecl; external uCalcDLL name 'FPEnvGetExceptionMask';

            
typedef  int32_t (* __FPEnvGetExceptionMask)(void *uCalcHandle); 

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

static Int32 FPEnvGetExceptionMask_(void *  uCalcHandle);
            
Prev | Next