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 */
|
||
|
|