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

GetProcAddress() static private method

Get the unmanaged function pointer
static private GetProcAddress ( string functionName ) : IntPtr
functionName string function name
return System.IntPtr
            internal static FARPROC GetProcAddress(string functionName)
            {
                FARPROC result = System.IntPtr.Zero;
                if (System.IntPtr.Zero != ADLCheckLibrary_.ADLLibrary) {
                    result = ADLImport.ADL_Main_Control_GetProcAddress(ADLCheckLibrary_.ADLLibrary, functionName);
                }
                return result;
            }