14 lines
282 B
C#
14 lines
282 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SpeechLib {
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
public struct _LARGE_INTEGER {
|
|
public long QuadPart;
|
|
}
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
public struct _ULARGE_INTEGER {
|
|
public ulong QuadPart;
|
|
}
|
|
}
|