MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / Ext2InodeType

Function Ext2InodeType

Ext4Fsd/fileinfo.c:1891–1903  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1889}
1890
1891ULONG
1892Ext2InodeType(PEXT2_MCB Mcb)
1893{
1894 if (IsMcbSymLink(Mcb)) {
1895 return EXT2_FT_SYMLINK;
1896 }
1897
1898 if (IsMcbDirectory(Mcb)) {
1899 return EXT2_FT_DIR;
1900 }
1901
1902 return EXT2_FT_REG_FILE;
1903}
1904
1905NTSTATUS
1906Ext2DeleteFile(

Callers 1

Ext2DeleteFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected