2022-10-11 17:21:16 +00:00
|
|
|
#pragma once
|
|
|
|
#include "fs/VFS.h"
|
|
|
|
|
|
|
|
namespace DeviceFS
|
|
|
|
{
|
|
|
|
VFS::Node* get();
|
|
|
|
|
|
|
|
VFS::Node* finddir(VFS::Node* node, const char* filename);
|
2022-10-23 12:05:55 +00:00
|
|
|
VFS::Node* readdir(VFS::Node* node, long offset);
|
2022-10-11 17:21:16 +00:00
|
|
|
}
|