blob: d19be0f06839f1384c132e82028e89a61b236c48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright 2024 jacqueline <me@jacqueline.id.au>
*
* SPDX-License-Identifier: GPL-3.0-only
*/
#pragma once
#include <string>
#include "lvgl.h"
namespace ui {
auto SaveScreenshot(lv_obj_t* obj, const std::string& path) -> void;
}
|