30 lines
327 B
C++
30 lines
327 B
C++
// vfs.h
|
|
// Virtual file system subsystem for HOS
|
|
// Author: Josh Holtrop
|
|
// Date: 05/10/05
|
|
// Modified: 05/10/05
|
|
|
|
#ifndef __HOS_VFS_H__
|
|
#define __HOS_VFS_H__ __HOS_VFS_H__
|
|
|
|
#ifdef _HOS_CPP_
|
|
extern "C" {
|
|
#endif
|
|
|
|
int vfs_init();
|
|
|
|
#ifdef _HOS_CPP_
|
|
}
|
|
|
|
class FileSystem
|
|
{
|
|
public:
|
|
FileSystem();
|
|
~FileSystem();
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|