10 lines
201 B
C#
10 lines
201 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace InnoPatcher;
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
internal struct InnoSha1Digest {
|
|
internal uint _x0, _x1, _x2, _x3, _x4;
|
|
}
|