예제 #1
0
파일: Api.cs 프로젝트: fw2568/YaNco
        public static RfcRc GetTableRowCount(TableHandle table, out int count, out RfcErrorInfo errorInfo)
        {
            var rc = Interopt.RfcGetRowCount(table.Ptr, out var uIntCount, out errorInfo);

            count = (int)uIntCount;
            return(rc);
        }