2022-06-27 21:36:56 +04:00
|
|
|
/*
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
UMKa - User-Mode KolibriOS developer tools
|
|
|
|
|
|
2023-01-30 06:24:23 +00:00
|
|
|
Copyright (C) 2021, 2023 Ivan Baravy <dunkaist@gmail.com>
|
2022-06-27 21:36:56 +04:00
|
|
|
*/
|
|
|
|
|
|
2023-02-01 18:30:44 +00:00
|
|
|
#ifndef UMKART_H_INCLUDED
|
|
|
|
|
#define UMKART_H_INCLUDED
|
2021-11-17 04:07:38 +03:00
|
|
|
|
2023-02-03 07:39:32 +03:00
|
|
|
#include <stdatomic.h>
|
2023-01-31 02:38:48 +00:00
|
|
|
#include "umka.h"
|
|
|
|
|
#include "shell.h"
|
|
|
|
|
|
2023-02-03 07:39:32 +03:00
|
|
|
extern atomic_int umka_irq_number;
|
|
|
|
|
|
2023-01-30 06:24:23 +00:00
|
|
|
void
|
|
|
|
|
dump_devices_dat(const char *filename);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
copy_display_to_rgb888(void *to);
|
2021-11-17 04:07:38 +03:00
|
|
|
|
2023-02-01 18:30:44 +00:00
|
|
|
#endif // UMKART_H_INCLUDED
|