CoolPotOS/include/pcat.h
2024-05-02 11:06:52 +08:00

19 lines
295 B
C

#ifndef CRASHPOWEROS_PCAT_H
#define CRASHPOWEROS_PCAT_H
#include "task.h"
#include "fat16.h"
struct pcat_process{
uint32_t line;
uint32_t chars;
uint32_t buf_x,buf_y;
uint32_t buffer_screen;
int keys;
struct File *file;
};
void pcat_launch(struct File *file);
#endif