| 234 | } |
| 235 | |
| 236 | ULONG WinReadReparseTag(HANDLE h) { |
| 237 | TTempBuf buf; |
| 238 | REPARSE_DATA_BUFFER* rdb = ReadReparsePoint(h, buf); |
| 239 | return rdb ? rdb->ReparseTag : 0; |
| 240 | } |
| 241 | |
| 242 | // we can't use this function to get an analog of unix inode due to a lot of NTFS folders do not have this GUID |
| 243 | // (it will be 'create' case really) |
no test coverage detected