1
#define _WIN32_WINNT 0x0400
2
#include <windows.h>
3
#include <winioctl.h>
4
//ReadFileLink
5
ULONGLONG *GetFileClusters(
6
PCHAR lpFileName,
7
ULONG *ClusterSize,
8
ULONG *ClCount,
9
ULONG *FileSize
10
)
11
2
3
4
5
6
7
8
9
10
11