| 86 | } |
| 87 | |
| 88 | inline bool_t PUTLONG(xdr_t* xdrs, const SLONG* lp) |
| 89 | { |
| 90 | const SLONG l = xdrs->x_local ? *lp : htonl(*lp); |
| 91 | return xdrs->x_putbytes(reinterpret_cast<const char*>(&l), 4); |
| 92 | } |
| 93 | |
| 94 | static SCHAR zeros[4] = { 0, 0, 0, 0 }; |
| 95 |
no test coverage detected