diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-03-10 19:34:38 +1100 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-03-10 19:34:38 +1100 |
| commit | a1b13c1da9c9d8a97ecf1771e46576820b6373a6 (patch) | |
| tree | 9a4958d78d94e68221e535559aeb6be0e257cfcd /src/format/image/bmp.c | |
| parent | 30568b2d0f38b73646bbc32f95259f74354660d4 (diff) | |
fix(bmp): Add no implementaion warning for BITMAP header handler
Diffstat (limited to 'src/format/image/bmp.c')
| -rw-r--r-- | src/format/image/bmp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/format/image/bmp.c b/src/format/image/bmp.c index 632def7..e565b16 100644 --- a/src/format/image/bmp.c +++ b/src/format/image/bmp.c @@ -1,3 +1,4 @@ +#include "result.h" #include <tinyff/image/bmp.h> #include <tinyff/dbg.h> @@ -64,7 +65,12 @@ ff_result ff_open_bmp(ff_stream *stream, ff_bmp_ctx **out_ctx, ff_flag require_v } ff_result ff_bmp_header_handler(uint8_t *buf, size_t len, ff_bmp_ctx *ctx) { + (void) buf; + (void) ctx; + if (len != FF_BMP_HEADER_SIZE) { } + + return FF_RESULT_WARN_NO_IMPL; }
\ No newline at end of file |
