blob: 4a931099b008188c8ae96967bb578bf71fc325d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <time.h>
namespace QuickMedia {
float get_ui_scale();
void show_virtual_keyboard();
void hide_virtual_keyboard();
bool is_touch_enabled();
time_t iso_utc_to_unix_time(const char *time_str);
}
|