private static extern RfcResultCodes RfcGetFieldDescByName(IntPtr typeDescHandle, string name, out RfcFieldDescription fieldDesc, out RfcErrorInfo errorInfo);
public RfcResultCodes DestroyTransaction(IntPtr tHandle, out RfcErrorInfo errorInfo) => RfcDestroyTransaction(tHandle, out errorInfo);
private static extern RfcResultCodes RfcGetTable(IntPtr dataHandle, string name, out IntPtr tableHandle, out RfcErrorInfo errorInfo);
public RfcResultCodes InvokeInTransaction(IntPtr tHandle, IntPtr funcHandle, out RfcErrorInfo errorInfo) => RfcInvokeInTransaction(tHandle, funcHandle, out errorInfo);
public RfcResultCodes ConfirmTransaction(IntPtr tHandle, out RfcErrorInfo errorInfo) => RfcConfirmTransaction(tHandle, out errorInfo);
public RfcResultCodes GetTransactionId(IntPtr rfcHandle, out string tid, out RfcErrorInfo errorInfo) => RfcGetTransactionID(rfcHandle, out tid, out errorInfo);
public IntPtr CreateTransaction(IntPtr rfcHandle, string tid, string queueName, out RfcErrorInfo errorInfo) => RfcCreateTransaction(rfcHandle, tid, queueName, out errorInfo);
private static extern RfcResultCodes RfcGetParameterDescByName(IntPtr funcDescHandle, string name, out RfcParameterDescription paramDesc, out RfcErrorInfo errorInfo);
public RfcResultCodes GetParameterDescByName(IntPtr funcDescHandle, string name, out RfcParameterDescription paramDesc, out RfcErrorInfo errorInfo) => RfcGetParameterDescByName(funcDescHandle, name, out paramDesc, out errorInfo);
private static extern RfcResultCodes RfcGetParameterDescByIndex(IntPtr funcDescHandle, int index, out RfcParameterDescription paramDesc, out RfcErrorInfo errorInfo);
public RfcResultCodes GetParameterDescByIndex(IntPtr funcDescHandle, int index, out RfcParameterDescription paramDesc, out RfcErrorInfo errorInfo) => RfcGetParameterDescByIndex(funcDescHandle, index, out paramDesc, out errorInfo);
public RfcResultCodes GetParameterCount(IntPtr funcDescHandle, out int count, out RfcErrorInfo errorInfo) => RfcGetParameterCount(funcDescHandle, out count, out errorInfo);
private static extern RfcResultCodes RfcGetParameterCount(IntPtr funcDescHandle, out int count, out RfcErrorInfo errorInfo);
public RfcResultCodes GetFieldDescByName(IntPtr typeDescHandle, string name, out RfcFieldDescription fieldDesc, out RfcErrorInfo errorInfo) => RfcGetFieldDescByName(typeDescHandle, name, out fieldDesc, out errorInfo);
public RfcResultCodes Invoke(IntPtr rfcHandle, IntPtr funcHandle, out RfcErrorInfo errorInfo) => RfcInvoke(rfcHandle, funcHandle, out errorInfo);
private static extern IntPtr RfcGetFunctionDesc(IntPtr rfcHandle, string funcName, out RfcErrorInfo errorInfo);
private static extern RfcResultCodes RfcGetTransactionID(IntPtr rfcHandle, out string tid, out RfcErrorInfo errorInfo);
public IntPtr GetFunctionDesc(IntPtr rfcHandle, string funcName, out RfcErrorInfo errorInfo) => RfcGetFunctionDesc(rfcHandle, funcName, out errorInfo);
private static extern IntPtr RfcCreateTransaction(IntPtr rfcHandle, string tid, string queueName, out RfcErrorInfo errorInfo);
private static extern IntPtr RfcCreateFunction(IntPtr funcDescHandle, out RfcErrorInfo errorInfo);
private static extern RfcResultCodes RfcInvokeInTransaction(IntPtr tHandle, IntPtr funcHandle, out RfcErrorInfo errorInfo);
public IntPtr CreateFunction(IntPtr funcDescHandle, out RfcErrorInfo errorInfo) => RfcCreateFunction(funcDescHandle, out errorInfo);
public RfcResultCodes SubmitTransaction(IntPtr tHandle, out RfcErrorInfo errorInfo) => RfcSubmitTransaction(tHandle, out errorInfo);
private static extern RfcResultCodes RfcDestroyFunction(IntPtr funcHandle, out RfcErrorInfo errorInfo);
private static extern RfcResultCodes RfcDestroyTransaction(IntPtr tHandle, out RfcErrorInfo errorInfo);
public RfcResultCodes DestroyFunction(IntPtr funcHandle, out RfcErrorInfo errorInfo) => RfcDestroyFunction(funcHandle, out errorInfo);
private static extern RfcResultCodes RfcGetString(IntPtr dataHandle, string name, char[] stringBuffer, uint bufferLength, out uint stringLength, out RfcErrorInfo errorInfo);
private static extern RfcResultCodes RfcInvoke(IntPtr rfcHandle, IntPtr funcHandle, out RfcErrorInfo errorInfo);
public RfcResultCodes GetTable(IntPtr dataHandle, string name, out IntPtr tableHandle, out RfcErrorInfo errorInfo) => RfcGetTable(dataHandle, name, out tableHandle, out errorInfo);
public RfcResultCodes GetFieldDescByIndex(IntPtr typeDescHandle, int index, out RfcFieldDescription fieldDesc, out RfcErrorInfo errorInfo) => RfcGetFieldDescByIndex(typeDescHandle, index, out fieldDesc, out errorInfo);