blob: 4342beb1cbe846d5fa922ded8fe95457e7b2021a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef RALEIGH_RUNTIME_H
#define RALEIGH_RUNTIME_H
#include <raleigh/window.h>
#include <structs/dllist.h>
namespace raleigh {
void start_runtime() __attribute__ ((noreturn));
extern dllist<window &> open_windows;
extern dllist<window &> to_be_deleted;
}
#endif
|