ATI.ADL.ADL.ADLCheckLibrary.IsFunctionValid C# (CSharp) Method

IsFunctionValid() static private method

Check the import function to see it exists or not
static private IsFunctionValid ( string functionName ) : bool
functionName string function name
return bool
            internal static bool IsFunctionValid(string functionName)
            {
                bool result = false;
                if (System.IntPtr.Zero != ADLCheckLibrary_.ADLLibrary) {
                    if (1 == ADLImport.ADL_Main_Control_IsFunctionValid(ADLCheckLibrary_.ADLLibrary, functionName)) {
                        result = true;
                    }
                }
                return result;
            }