mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 14:07:58 +03:00
21 lines
259 B
C
21 lines
259 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
|