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