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
16
17
18
<html>
<head>
  <title>extension test</title>
  <style type="text/css">
  </style>
  <script type="text/tiscript">
    // copy "extension.dll" next to the "sciter.dll"
  	const ext = include library "extension";
  	debug: ext;
  	debug: ext.add(1,2);
  	debug: ext.sub(1,2);

  </script>
</head>
<body>
  <h4>see logs in Inspector</h4>
</body>
</html>