git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Improved VTerm support
[tpg/acess2.git]
/
Kernel
/
include
/
fs_devfs.h
1
/*
2
* Acess 2
3
* Device Filesystem (DevFS)
4
* - vfs/fs/devfs.c
5
*/
6
#ifndef _FS_DEVFS_H
7
#define _FS_DEVFS_H
8
#include <vfs.h>
9
10
// === TYPES ===
11
typedef struct sDevFS_Driver {
12
struct sDevFS_Driver *Next;
13
char *Name;
14
tVFS_Node RootNode;
15
} tDevFS_Driver;
16
17
// === FUNCTIONS ===
18
extern int DevFS_AddDevice(tDevFS_Driver *Dev);
19
20
#endif
UCC
git Repository :: git.ucc.asn.au