Pick up a VAX format numeric info item with a 2 byte length.
| 508 | |
| 509 | // Pick up a VAX format numeric info item with a 2 byte length. |
| 510 | static int getNumericInfo(const UCHAR** ptr, const UCHAR* bufferEnd) |
| 511 | { |
| 512 | const USHORT len = getLen(ptr, bufferEnd); |
| 513 | int item = gds__vax_integer(*ptr, len); |
| 514 | *ptr += len; |
| 515 | return item; |
| 516 | } |
| 517 | |
| 518 | // Pick up a string valued info item. |
| 519 | static void getStringInfo(const UCHAR** ptr, const UCHAR* bufferEnd, string* str) |