summaryrefslogtreecommitdiff
path: root/src/user/include/cxx/raleigh/runtime.h
blob: 92bd230a3caf28889e9dc9bb0b4fe2f02cfe7390 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#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;
}

#endif