mirror of
https://github.com/libretro/Play-.git
synced 2025-01-07 17:10:21 +00:00
0c5fb983fd
git-svn-id: http://svn.purei.org/purei/trunk@40 b36208d7-6611-0410-8bec-b1987f11c4a2
30 lines
293 B
C
30 lines
293 B
C
#ifndef _UINT128_H_
|
|
#define _UINT128_H_
|
|
|
|
#include "Types.h"
|
|
|
|
struct uint128
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint32 nV[4];
|
|
};
|
|
struct
|
|
{
|
|
uint32 nV0;
|
|
uint32 nV1;
|
|
uint32 nV2;
|
|
uint32 nV3;
|
|
};
|
|
struct
|
|
{
|
|
uint64 nD0;
|
|
uint64 nD1;
|
|
};
|
|
};
|
|
};
|
|
|
|
#endif
|