Play-/Source/Integer64.h
2018-04-30 21:01:23 +01:00

20 lines
200 B
C

#ifndef _INTEGER64_H_
#define _INTEGER64_H_
#include "Types.h"
struct INTEGER64
{
union {
uint64 q;
struct
{
uint32 d0;
uint32 d1;
};
uint32 d[2];
};
};
#endif