OSAPI  0.29
Open System API
fs_type_dir.h
1 // *****************************************************************************************
2 //
3 // File description:
4 //
5 // Author: Joao Costa
6 // Purpose: Type declarations for a directory Element
7 //
8 // *****************************************************************************************
9 
10 #ifndef OSAPI_FS_TYPE_DIR_H_
11 #define OSAPI_FS_TYPE_DIR_H_
12 
13 // *****************************************************************************************
14 //
15 // Section: Import headers
16 //
17 // *****************************************************************************************
18 
19 // Import own headers
20 #include "fs/fs_platform.h"
21 #include "fs/type/fs_type_element.h"
22 
23 // *****************************************************************************************
24 //
25 // Section: Type definitions
26 //
27 // *****************************************************************************************
28 
29 
32 {
35 };
36 
37 typedef struct osapi_fs_dir_S t_dir;
38 
39 
40 
41 #endif /* OSAPI_FS_TYPE_DIR_H_ */
osapi_fs_dir_S::dir
t_fs_directoryInfo dir
Directory element specific information.
Definition: fs_type_dir.h:34
osapi_fs_directory_info_S
Structure describing a directory descriptor type.
Definition: fs_posix_type_dir.h:33
osapi_fs_element_info_S
Structure containing the file system element generic information.
Definition: fs_type_elementInfo.h:36
osapi_fs_dir_S::element
t_element element
General element information.
Definition: fs_type_dir.h:33
osapi_fs_dir_S
Structure that holds a directory system element information.
Definition: fs_type_dir.h:31