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