blob: 3c37d1b5e99239a81bacdea6a729059df31f1d0e (
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
void stl_poll_common(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);
|