browser-window-ffi 0.0.5

FFI bindings for the browser-window crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#include "../window.h"



const bw_Application* bw_Window_getApp( bw_Window* window ) {
	return window->app;
}

bool bw_Window_is_closed( const bw_Window* window ) {
	return window->closed;
}