mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 11:42:36 +01:00
11 lines
232 B
C#
11 lines
232 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.DetectEncoding.Multilang
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
public struct _LARGE_INTEGER
|
|
{
|
|
public long QuadPart;
|
|
}
|
|
}
|