Delphi
type Smallint = -32768..32767;
C++
typedef short Smallint; // -32768..32767
-32768 から 32767 までの範囲の整数型です。
Smallint は 2 バイトの符号付き整数です。