blob: 0fdb315f633e50370ae1db009100b7c9bc26e090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* packet-scsi-mmc.h
* Ronnie sahlberg 2006
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 2002 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_SCSI_MMC_H_
#define __PACKET_SCSI_MMC_H_
extern int hf_scsi_mmc_opcode;
extern const scsi_cdb_table_t scsi_mmc_table[256];
WS_DLL_PUBLIC value_string_ext scsi_mmc_vals_ext;
#endif
|