* If a stw_framebuffer is found, lock it and return the pointer.
* Else, return NULL.
*/
-static inline struct stw_framebuffer *
+static struct stw_framebuffer *
stw_framebuffer_from_hwnd_locked(HWND hwnd)
{
struct stw_framebuffer *fb;
* Given an hdc, return the corresponding stw_framebuffer.
* The returned stw_framebuffer will have its mutex locked.
*/
-static inline struct stw_framebuffer *
+static struct stw_framebuffer *
stw_framebuffer_from_hdc_locked(HDC hdc)
{
HWND hwnd;
static struct stw_tls_data *g_pendingTlsData = NULL;
-static inline struct stw_tls_data *
+static struct stw_tls_data *
stw_tls_data_create(DWORD dwThreadId);
static struct stw_tls_data *
/**
* Install windows hook for a given thread (not necessarily the current one).
*/
-static inline struct stw_tls_data *
+static struct stw_tls_data *
stw_tls_data_create(DWORD dwThreadId)
{
struct stw_tls_data *data;