jchv

Results 79 comments of jchv

Interesting. I agree it can almost certainly be safely ignored, as all of the classes that are registered in a process are freed when the process exits. However, this might...

I think it should be possible to use `user32:CreateIcon` to get an `HICON` handle for an image in-memory, then set it to the `hIcon` member of the `WNDCLASSEX` structure that...

This is a bit confounding because DPI awareness is per-process on Windows. For example, go-webview2 will magically work fine with high DPI if you do: ```go dll := syscall.MustLoadDLL("user32") if...

Hmm? This method should work just fine. Try doing it in `init()` to ensure it occurs early enough. I understand that it would be nice to have it be automatic,...

Wow! I’m impressed that it gets so far already. For Edge we’re just loading a small loader stub (in fact, I’ve fully reverse engineered that stub over here: https://github.com/jchv/OpenWebView2Loader) which...

Hey, this would be useful to me. Is there any chance of this being upstreamed soon? cc: @tj

Oh, I think the current code is probably sufficient. The le_go library does ensure the TCP socket is open and will attempt to reconnect if not, and if that fails...

Hmm. I'm running some tests with this in a close-to-production environment and I actually see some issues with the reliability. It seemed to arbitrarily disconnect silently and not reconnect. It's...

And, now I've done that. My LogEntries handler is available [here](https://github.com/Benzinga/apex-logentries). Of course, there's no guarantee that my implementation of the LogEntries protocol is better than `bsphere/le_go`. I did it...

Bit late to the party but I suspect it has nothing to do with the kill mode. I'm facing this problem using a snippet that is nearly identical to one...