Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 1.35 KB

README.md

File metadata and controls

47 lines (39 loc) · 1.35 KB

reflection-ui

JS header for https://github.com/cactoes/reflection

Installation

PS> npm install reflection_ui

Usage

[!] Important, this library does not take care of the windows message loop
you will have to do that yourself, see example

Initialization

Make sure before calling any other reflection function that init_reflection() has been called

import * as reflection from "reflection_ui";
// or const reflection = require("reflection_ui");

// initialize the dll & load the library
reflection.init_reflection();

Docs

init_reflection

Sets up the dll environment

Syntax

function init_reflection(lib_path: string): void;

Params

lib_path
Type: string
This argument is optional and only needs to be set if you have a custom build of reflection

The rest