Tamar Christina
Tamar Christina
Hi! > Is anyone currently working on adding support for the win32 functions needed to establish a TLS connection? Is this the appropriate place to add them, or would they...
Hi, Thanks for the report. While I agree that the type is technically incorrect, as in `PHANDLE` is `void**` I'm not sure it really matters in this case. We've effectively...
It hasn't been done yet, it's not a correctness issue so it's not particularly high on my to-do list atm I must admit. The handle is being treated as a...
Ah I missed this, I'm on holiday atm and will do it when I'm back in two weeks.
> The comment in the struct for `dwFileType` seem to say: > > > Obsolete. Do not use Those entries never existed on Windows. This is a documentation bug, if...
Hi, thanks for the report. I'll take a look tomorrow evening.
Sorry for the delay, was caught up in some work. Hmm maybe we should just expose the size parameter as a pointer? So maybe just ``` regQueryValueEx' :: HKEY ->...
Are you talking about the missing constant `GWL_HINSTANCE`? for now just define it yourself or use hsc2hs. create a file that ends in `.hsc` and just `#include ` and use...
https://hackage.haskell.org/package/Win32-2.8.4.0/docs/Graphics-Win32-LayeredWindow.html as msdn says `GetWindowLong` is an obsolete api. `GetWindowLongPtr` should be used.
Hi Yotam, `CreateProcess` isn't here mostly because it's a very extensive API to make bindings for. It's inputs can get quite deeply nested and it's available arguments spread out over...