OSDN Git Service

ea5b6eb0734312bdcf313f7a8a393a26b93d5d4e
[hos/hos-v4a.git] / aplfw / system / file / file_local.h
1 /** 
2  *  Hyper Operating System  Application Framework
3  *
4  * @file  file.h
5  * @brief %jp{ファイルシステム}
6  *
7  * Copyright (C) 2006 by Project HOS
8  * http://sourceforge.jp/projects/hos/
9  */
10
11
12 #ifndef __HOS__file_local_h__
13 #define __HOS__file_local_h__
14
15
16 #include "file.h"
17
18 #define FILE_MAX_VOLUME         16
19
20
21
22 typedef struct c_file
23 {
24         T_FILE_VOLINF VolumeTable[FILE_MAX_VOLUME];
25         HANDLE        hDevVol;
26 } C_FILE;
27
28 extern C_FILE   g_File;
29
30
31 #endif  /* __HOS__file_local_h__ */
32
33
34 /* end of file */