Example #1
0
File: Api.cs Project: fw2568/YaNco
        public static StructureHandle GetCurrentTableRow(TableHandle table, out RfcErrorInfo errorInfo)
        {
            var ptr = Interopt.RfcGetCurrentRow(table.Ptr, out errorInfo);

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