Changeset View
Changeset View
Standalone View
Standalone View
sys/rpc/xdr.h
Show First 20 Lines • Show All 279 Lines • ▼ Show 20 Lines | |||||
#define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG((buf), (v)) | #define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG((buf), (v)) | ||||
#define IXDR_PUT_SHORT(buf, v) IXDR_PUT_LONG((buf), (v)) | #define IXDR_PUT_SHORT(buf, v) IXDR_PUT_LONG((buf), (v)) | ||||
#define IXDR_PUT_U_SHORT(buf, v) IXDR_PUT_LONG((buf), (v)) | #define IXDR_PUT_U_SHORT(buf, v) IXDR_PUT_LONG((buf), (v)) | ||||
/* | /* | ||||
* These are the "generic" xdr routines. | * These are the "generic" xdr routines. | ||||
*/ | */ | ||||
__BEGIN_DECLS | __BEGIN_DECLS | ||||
extern bool_t xdr_void(void); | extern bool_t xdr_void(XDR *, void *); | ||||
extern bool_t xdr_int(XDR *, int *); | extern bool_t xdr_int(XDR *, int *); | ||||
extern bool_t xdr_u_int(XDR *, u_int *); | extern bool_t xdr_u_int(XDR *, u_int *); | ||||
extern bool_t xdr_long(XDR *, long *); | extern bool_t xdr_long(XDR *, long *); | ||||
extern bool_t xdr_u_long(XDR *, u_long *); | extern bool_t xdr_u_long(XDR *, u_long *); | ||||
extern bool_t xdr_short(XDR *, short *); | extern bool_t xdr_short(XDR *, short *); | ||||
extern bool_t xdr_u_short(XDR *, u_short *); | extern bool_t xdr_u_short(XDR *, u_short *); | ||||
extern bool_t xdr_int16_t(XDR *, int16_t *); | extern bool_t xdr_int16_t(XDR *, int16_t *); | ||||
extern bool_t xdr_uint16_t(XDR *, uint16_t *); | extern bool_t xdr_uint16_t(XDR *, uint16_t *); | ||||
▲ Show 20 Lines • Show All 87 Lines • Show Last 20 Lines |