1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-08 17:02:21 +03:00

BDB 4.1.24

This commit is contained in:
ram@mysql.r18.ru
2002-10-30 15:57:05 +04:00
parent 1c0f1712ca
commit 5e09392faa
1191 changed files with 171164 additions and 58171 deletions

View File

@ -0,0 +1,35 @@
/*
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
* jrpcgen is part of the "Remote Tea" ONC/RPC package for Java
* See http://acplt.org/ks/remotetea.html for details
*/
package com.sleepycat.db.rpcserver;
import org.acplt.oncrpc.*;
import java.io.IOException;
public class __dbc_dup_reply implements XdrAble {
public int status;
public int dbcidcl_id;
public __dbc_dup_reply() {
}
public __dbc_dup_reply(XdrDecodingStream xdr)
throws OncRpcException, IOException {
xdrDecode(xdr);
}
public void xdrEncode(XdrEncodingStream xdr)
throws OncRpcException, IOException {
xdr.xdrEncodeInt(status);
xdr.xdrEncodeInt(dbcidcl_id);
}
public void xdrDecode(XdrDecodingStream xdr)
throws OncRpcException, IOException {
status = xdr.xdrDecodeInt();
dbcidcl_id = xdr.xdrDecodeInt();
}
}
// End of __dbc_dup_reply.java