summaryrefslogtreecommitdiff
path: root/Source/Kernel/FileSystems/FAT/FATFileNode.class.h
blob: b64f91188ef4d92fff7b1076bf49224ef45935d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef DEF_FATFILENODE_CLASS_H
#define DEF_FATFILENODE_CLASS_H

#include <VFS/FileNode.class.h>

class FATFileNode : public FileNode {
	friend class FATFS;
	FATFileNode (String name, FileSystem* fs, FSNode* parent, u32int size, u32int permissions = 0777,
			u32int uid = 0, u32int gid = 0) :
		FileNode(name, fs, parent, size, permissions, uid, gid){}

	u32int m_firstCluster;
	u32int m_firstDirEntryID;	//id of the first directory entry corresponding to this file in parent directory
};

#endif