- UNPACKNUMBER(OP_CHAR, char)
- UNPACKNUMBER(OP_BYTE, unsigned char)
- UNPACKNUMBER(OP_SHORT, short)
- UNPACKNUMBER(OP_USHORT, unsigned short)
- UNPACKNUMBER(OP_INT, int)
- UNPACKNUMBER(OP_UINT, unsigned int)
- UNPACKNUMBER(OP_LONG, long)
- UNPACKNUMBER(OP_ULONG, unsigned long)
+ UNPACKNUMBER(OP_CHAR, int8_t)
+ UNPACKNUMBER(OP_BYTE, uint8_t)
+ UNPACKNUMBER(OP_SHORT, int16_t)
+ UNPACKNUMBER(OP_USHORT, uint16_t)
+ UNPACKNUMBER(OP_INT, int32_t)
+ UNPACKNUMBER(OP_UINT, uint32_t)
+ UNPACKNUMBER(OP_LONG, int64_t)
+ UNPACKNUMBER(OP_ULONG, uint64_t)