Vladimir Vissoultchev

Results 98 comments of Vladimir Vissoultchev

I'll post an issue tracking progress on the conditional compilation for libdeflate [de]compressor dependency then :-))

64-bit VBA will be a problem. The ASM thunks are x86 only as my primary target VB6 is x86 only.

x64 support is planned in connection with (mostly) TB support but VBA7 x64 will have these too if possible. There are some shenanigans going on with x64 VBA vtables I'm...

When the `hThunk` address is dumped you can open Assembly window, navigate to this hex address and put a breakpoint with F9 so that you can trace the later `DWORD...

Hi, > How might I diagnose this? 1. You can remove subclassing and make sure there are no crashes anymore 2. You can create a minimal repro project that I...

This works here ``` @echo off sc create frpcsvc start= auto binPath= "%~dp0srvany-ng.exe" reg add HKLM\SYSTEM\CurrentControlSet\Services\frpcsvc\Parameters /v Application /f /d "%~dp0frpc.exe" reg add HKLM\SYSTEM\CurrentControlSet\Services\frpcsvc\Parameters /v AppDirectory /f /d "%~dp0." reg...

Check this out: https://github.com/wqweto/VbUdpBroadcast Btw, the port uses normal UDP sockets to relay and does not have to calculate IP checksum manually.

IMO easiest way to support XP is to use [`RtlGenRandom`](https://docs.microsoft.com/en-us/windows/win32/api/ntsecapi/nf-ntsecapi-rtlgenrandom) in first place (that is `SystemFunction036` export of `advapi32.dll`). It does not need a handle being opened/closed like both current...