OSDN Git Service

(none)
[hos/hos-v4a.git] / aplfw / system / file / volume.h
1 /** 
2  *  Hyper Operating System  Application Framework
3  *
4  * @file  volume.h
5  * @brief %jp{ボリュームオブジェクト}
6  *
7  * %jp{ディスクドライブなどの単位をボリュームとして扱う}
8  *
9  * Copyright (C) 2006 by Project HOS
10  * http://sourceforge.jp/projects/hos/
11  */
12
13
14 #ifndef __HOS__volume_h__
15 #define __HOS__volume_h__
16
17 #include "file.h"
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 HANDLE   Volume_OpenFile(HANDLE hVolume, const char *pszPath, int iMode);               /* ファイルを開く */
24 FILE_ERR Volume_MakeDir(HANDLE hVolume, const char *pszPath);                                   /* サブディレクトリを作成 */
25 FILE_ERR Volume_Remove(HANDLE hVolume, const char *pszPath);                                    /* ファイルを削除 */
26
27 #ifdef __cplusplus
28 }
29 #endif
30
31
32
33 #endif  /* __HOS__volume_h__ */
34
35
36 /* end of file */