blob: 0f48b8378b02a82aabb4fe3407bc8426b80ec8f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// license:BSD-3-Clause
// copyright-holders:Nathan Woods
/*********************************************************************
wavfile.h
Format code for wave (*.wav) files
*********************************************************************/
#ifndef MAME_FORMATS_WAVFILE_H
#define MAME_FORMATS_WAVFILE_H
#pragma once
#include "cassimg.h"
extern const struct CassetteFormat wavfile_format;
#endif // MAME_FORMATS_WAVFILE_H
|