CoolPotOS/include/pcat.h

19 lines
295 B
C
Raw Normal View History

2024-04-20 02:43:22 +08:00
#ifndef CRASHPOWEROS_PCAT_H
#define CRASHPOWEROS_PCAT_H
#include "task.h"
#include "fat16.h"
struct pcat_process{
2024-05-02 11:06:52 +08:00
uint32_t line;
uint32_t chars;
uint32_t buf_x,buf_y;
uint32_t buffer_screen;
int keys;
struct File *file;
2024-04-20 02:43:22 +08:00
};
2024-05-02 11:06:52 +08:00
void pcat_launch(struct File *file);
2024-04-20 02:43:22 +08:00
#endif