Example #1
0
File: Api.cs Project: fw2568/YaNco
        public static FunctionDescriptionHandle GetFunctionDescription(FunctionHandle functionHandle,
                                                                       out RfcErrorInfo errorInfo)
        {
            var ptr = Interopt.RfcDescribeFunction(functionHandle.Ptr, out errorInfo);

            return(ptr == IntPtr.Zero ? null : new FunctionDescriptionHandle(ptr));
        }