1 #ifndef SG_CMDS_H
2 #define SG_CMDS_H
3 
4 /********************************************************************
5  * This header did contain wrapper declarations for many SCSI commands
6  * up until sg3_utils version 1.22 . In that version, the command
7  * wrappers were broken into two groups, the 'basic' ones found in the
8  * "sg_cmds_basic.h" header and the 'extra' ones found in the
9  * "sg_cmds_extra.h" header. This header now simply includes those two
10  * headers.
11  * In sg3_utils version 1.26 the sg_cmds_mmc.h header was added and
12  * contains some MMC specific commands.
13  * The corresponding function definitions are found in the sg_cmds_basic.c,
14  * sg_cmds_extra.c and sg_cmds_mmc.c files.
15  ********************************************************************/
16 
17 #include "sg_cmds_basic.h"
18 #include "sg_cmds_extra.h"
19 #include "sg_cmds_mmc.h"
20 
21 #endif
22