mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 22:00:10 +01:00
13 lines
171 B
C
13 lines
171 B
C
#pragma once
|
|
|
|
struct SceMd5Context
|
|
{
|
|
le_t<u32> h[4];
|
|
le_t<u32> pad;
|
|
le_t<u16> usRemains;
|
|
le_t<u16> usComputed;
|
|
le_t<u64> ullTotalLen;
|
|
u8 buf[64];
|
|
u8 result[64];
|
|
};
|