1 // Copyright (c) the JPEG XL Project Authors. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file.
5 
6 #ifndef PLUGINS_GIMP_FILE_JXL_LOAD_H_
7 #define PLUGINS_GIMP_FILE_JXL_LOAD_H_
8 
9 #include <libgimp/gimp.h>
10 
11 #include "lib/jxl/base/status.h"
12 
13 namespace jxl {
14 
15 Status LoadJpegXlImage(const gchar* filename, gint32* image_id);
16 
17 }
18 
19 #endif  // PLUGINS_GIMP_FILE_JXL_LOAD_H_
20