19 lines
258 B
C
19 lines
258 B
C
|
|
// devfs.h
|
|
// device filesystem for HOS
|
|
// Author: Josh Holtrop
|
|
// Date: 06/03/04
|
|
// Modified: 06/08/04
|
|
|
|
#ifndef __HOS_DEVFS__
|
|
#define __HOS_DEVFS__ __HOS_DEVFS__
|
|
|
|
#include "Device.h"
|
|
#include "DeviceFolder.h"
|
|
|
|
void devfs_init(string mountPoint);
|
|
|
|
|
|
#endif
|
|
|