diff options
| author | Jeff Epler <jepler@gmail.com> | 2019-07-15 19:56:21 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2019-07-26 07:52:37 -0500 |
| commit | 7b9d26cefe02d1a357b2594339db474b7c5cd88e (patch) | |
| tree | 9f7a6149d146937b7de9ab99dbec6fac8696e925 | |
| parent | 54cde56ec5374f9b6c1aa9eb9dd6139b80df254a (diff) | |
WavFile.h: include vfs_fat.h for pyb_file_obj_t definition
Without such a definition, this header is not self-contained, but
requires whoever included it to also include vfs_fat.h
| -rw-r--r-- | shared-module/audiocore/WaveFile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared-module/audiocore/WaveFile.h b/shared-module/audiocore/WaveFile.h index 97dd6a46f..3eecbf15c 100644 --- a/shared-module/audiocore/WaveFile.h +++ b/shared-module/audiocore/WaveFile.h @@ -27,6 +27,7 @@ #ifndef MICROPY_INCLUDED_SHARED_MODULE_AUDIOIO_WAVEFILE_H #define MICROPY_INCLUDED_SHARED_MODULE_AUDIOIO_WAVEFILE_H +#include "extmod/vfs_fat.h" #include "py/obj.h" #include "shared-module/audiocore/__init__.h" |
