| 255 | } |
| 256 | |
| 257 | void ClumpletWriter::insertInt(UCHAR tag, const SLONG value) |
| 258 | { |
| 259 | UCHAR bytes[sizeof(SLONG)]; |
| 260 | |
| 261 | toVaxInteger(bytes, sizeof(bytes), value); |
| 262 | insertBytesLengthCheck(tag, bytes, sizeof(bytes)); |
| 263 | } |
| 264 | |
| 265 | void ClumpletWriter::insertBigInt(UCHAR tag, const SINT64 value) |
| 266 | { |
no outgoing calls