OSAPI  0.29
Open System API
fs_posix_type_id.h
1 // *****************************************************************************************
2 //
3 // File description:
4 //
5 // Author: Joao Costa
6 // Purpose: Type declarations for a FS ID
7 //
8 // *****************************************************************************************
9 
10 #ifndef OSAPI_FS_TYPE_ID_H_
11 #define OSAPI_FS_TYPE_ID_H_
12 
13 // *****************************************************************************************
14 //
15 // Section: Import headers
16 //
17 // *****************************************************************************************
18 
19 // *****************************************************************************************
20 //
21 // Section: Type definitions
22 //
23 // *****************************************************************************************
24 
25 
28 {
29  unsigned int major;
30  unsigned int minor;
31 };
32 
33 typedef struct osapi_fs_id_S t_fs_id;
34 
35 
36 
37 #endif /* OSAPI_FS_TYPE_ID_H_ */
osapi_fs_id_S
Structure that holds a directory system element information.
Definition: fs_posix_type_id.h:27
osapi_fs_id_S::minor
unsigned int minor
File system device minor number.
Definition: fs_posix_type_id.h:30
osapi_fs_id_S::major
unsigned int major
File system device major number.
Definition: fs_posix_type_id.h:29