mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
15 lines
252 B
C
15 lines
252 B
C
#ifndef EXPLORER_H
|
|
#define EXPLORER_H
|
|
|
|
#include "wm.h"
|
|
|
|
extern Window win_explorer;
|
|
extern Window win_editor;
|
|
extern Window win_cmd;
|
|
extern Window win_notepad;
|
|
extern Window win_calculator;
|
|
|
|
void explorer_init(void);
|
|
void explorer_reset(void);
|
|
|
|
#endif
|