blob: 8843a5fafde3752025c17d4e75870375efc63445 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (C) 2022 The LineageOS Project
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <src/piex.h>
namespace piex {
Error GetPreviewImageData(StreamInterface* data,
PreviewImageData* preview_image_data) {
return GetPreviewImageData(data, preview_image_data, nullptr);
}
} // namespace piex
|