pravic

Results 263 comments of pravic

Sorry, it was a copy-paste from the implementation. It should be `sciter::SciterAPI().SciterProcND` in your case.

You can use SetWindowLongW on 32-bit Windows. By the way, why do you use GCC instead of MSVC?

You don't need calling `run_loop`. Hook the window, attach Sciter to it, load html and that's it. Ah yes, you need to show it: call `window.expand(false)`. In order to use...

If you tell me how to use GameMaker and load a plugin in it, step by step, I'll try to check what's wrong with Sciter.

Rust has its own compiler, but uses an external linker and libraries (either GCC or MSVC). Anyway, it's not relevant to Game Maker. I'll try to check.

Hi. The intention was to show that this crate is a bindings library. During that time it was [somewhat common](https://crates.io/search?q=-rs) (and `-sys` crates were not so popular). Nowadays it would...

I partly agree. But again, what if my library isn't canonical? What if someone will make a better library? He'll deserve the `crates.rs/sciter` URL (J.) Anyway, it is indeed something...

Does it work in sciter.exe (wsciter.exe now)? If yes, then the problem is with the [manifest](https://github.com/c-smile/sciter-sdk/blob/master/demos/sciter/res/dpi-aware.manifest).

Well, the `frame` variable gets destroyed at the end of its scope and everything goes wrong. It's clearly a bug, but do you really want to do this instead of...

I see, it's a bit confusing now. Both `HostHandler::data_ready` and `Host::data_ready` do the same thing, so it's a matter of convenience, really. You don't need a weak reference just for...