11 lines
234 B
C#
11 lines
234 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace InnoPatcher;
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
internal struct InnoVersionData {
|
|
int WinVersion, NTVersion; // Cardinal
|
|
ushort NTServicePack; // Word
|
|
}
|