Tiberiu Chibici
852cf1bb17
==================================================== Mainly changed: FS.Initrd + (kind of) refractored VFS, bugfixed + Rewrote 'initrd' file system, fixed many problems + Working 'cat' and 'dir' console commands + Wrote 'initrd' image write application (for windows), however it may be bugged
21 lines
388 B
C
21 lines
388 B
C
/*
|
|
* File: info.h
|
|
* Author: Tiberiu
|
|
*
|
|
* Created on August 31, 2011, 3:15 PM
|
|
*/
|
|
|
|
#ifndef INFO_H
|
|
#define INFO_H
|
|
|
|
#include "types.h"
|
|
|
|
extern string InfoGetFileName (string path);
|
|
extern uint32 InfoGetFileSize (string path);
|
|
extern TimeSystem InfoGetTime ();
|
|
extern TimeSystem InfoGetFileCreated(string file);
|
|
extern TimeSystem InfoGetFileModified(string file);
|
|
|
|
#endif /* INFO_H */
|
|
|