diff options
Diffstat (limited to 'XI2proto.h')
-rw-r--r-- | XI2proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -65,6 +65,11 @@ * COMMON STRUCTS * * * *************************************************************************************/ +/* Fixed point 32.32 */ +typedef struct { + int32_t integral; + uint32_t frac; +} FP3232; /** * Struct to describe a device. |