browser-window-c 0.0.3

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

#include <string>



CefString bw_cef_copyToString( bw_CStrSlice slice ) {

	std::string temp( slice.data, slice.len );
	CefString string( temp );

	return string;
}