Skip to content

Instantly share code, notes, and snippets.

@gothburz
Created October 9, 2023 16:16
Show Gist options
  • Save gothburz/16aba067098e924b6a96cd29029c566b to your computer and use it in GitHub Desktop.
Save gothburz/16aba067098e924b6a96cd29029c566b to your computer and use it in GitHub Desktop.
typedef struct _BY_HANDLE_FILE_INFORMATION {
  DWORD    dwFileAttributes;
  FILETIME ftCreationTime;
  FILETIME ftLastAccessTime;
  FILETIME ftLastWriteTime;
  DWORD    dwVolumeSerialNumber;
  DWORD    nFileSizeHigh;
  DWORD    nFileSizeLow;
  DWORD    nNumberOfLinks;
  DWORD    nFileIndexHigh;
  DWORD    nFileIndexLow;
} BY_HANDLE_FILE_INFORMATION, *PBY_HANDLE_FILE_INFORMATION, *LPBY_HANDLE_FILE_INFORMATION;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment