summaryrefslogtreecommitdiffstats
path: root/kimgio/webp.h
blob: 6fc576c98864b16f985e0c66df6f2ded216a8fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// WebP read support
// © 2024 Alexander Hajnal
// Based on jp2.h
//
// This library is distributed under the conditions of the GNU LGPL.
#ifndef KIMG_WEBP_H
#define KIMG_WEBP_H

class TQImageIO;

extern "C" {
  void kimgio_webp_read( TQImageIO* io );
//  void kimgio_webp_write( TQImageIO* io ); // Not currently supported
} // extern "C"

#endif