sciter-rs 0.5.58

Rust bindings for Sciter - Embeddable HTML/CSS/script engine (cross-platform desktop GUI toolkit). Also capable with DirectX / OpenGL.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! TIScript Virtual Machine Runtime.

#![allow(non_camel_case_types, non_snake_case)]

use capi::sctypes::{LPVOID, UINT64};

MAKE_HANDLE!(#[doc = "TIScript VM native handle."] HVM, _HVM);

pub type tiscript_value = UINT64;

#[repr(C)]
pub struct tiscript_native_interface
{
	create_vm: LPVOID,
}