blob: 597fa733703dbec2aae4456c7be7ba3e5d850aaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <nnwt/socket.h>
#include "window.h"
#ifdef STELA_POLL_INLINE
bool stl_poll_common(struct stl_window *window, struct nn_pollfd *fds, bool block);
#ifdef STELA_PAUSE
void stl_wake_common(struct nn_pollfd *fds);
#endif
#endif
bool stl_process_events_common(struct stl_window *window, struct nn_pollfd *fds);
|