Play-/Source/Integer64.h
jpd002 e91d5fa70b 1987 goes a bit further!
git-svn-id: http://svn.purei.org/purei/trunk@212 b36208d7-6611-0410-8bec-b1987f11c4a2
2008-01-02 04:03:05 +00:00

20 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