mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-13 19:06:41 +10:00
31 lines
691 B
C#
31 lines
691 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace WPinternalsSDK
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
|
internal struct WIN32_FIND_DATA
|
|
{
|
|
public uint dwFileAttributes;
|
|
|
|
public FILETIME ftCreationTime;
|
|
|
|
public FILETIME ftLastAccessTime;
|
|
|
|
public FILETIME ftLastWriteTime;
|
|
|
|
public uint nFileSizeHigh;
|
|
|
|
public uint nFileSizeLow;
|
|
|
|
public uint dwReserved0;
|
|
|
|
public uint dwReserved1;
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)]
|
|
public string cFileName;
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 14)]
|
|
public string cAlternateFileName;
|
|
}
|
|
}
|