Wait, so the entire white border represents how big the drop shadow is and the reason I think it's…
If you put your window against a white background, take a screenshot and measure at which distance…
But the size is way too big for the drop shadow, don't you think?
From the GetWindowRect doc In Windows Vista and later, the Window Rect now includes the area occup…
For some reason, the AdjustWindowRect returns a bigger rect than I want. Here's an image of 2 wind…
By "unpredictable check" you mean "unpredictable branch" ? There will be no branch. It will compil…
flags |= (value ? A : 0) is what I ended up doing, but isn't a runtime unpredictable check slower …
Why do you want flag position to be compile time value? Classically you would typically do this: T…
Maybe there is a better way but this seems to work (only if you pass it a enum label or a number l…
In C, it's common to declare an enum as a bunch of flags: Is there any way to get back the flag's …
ssoher —
Oh this is already being tracked on github, nevermind
Updated release of RemedyBG, 0.4.0.2, is now available for download from itch.io. Add Event Filter…
ssoher —
When I hit a breakpoint or break with F12, upon pressing F5 to continue, the process resumes execu…
LAG —
2nd Week update -day 10 to 15 are now available in the repository
Martins, you're the man. Thank you very much for your assistance. It works perfectly now!
Turns out you don't need that RequestAccessAsync. Everything is works without it, you just need co…
I see... So, basically, I need to create something like this: And then call RequestAccessAsync() w…
I'd expect that part of adding thing to manifest file does not matter for desktop application. Tha…
That was quite an oversight on my part, thank you for putting me on the right track. Now, is there…
The Remarks section mentions what you need to do for this to work - you first need to request perm…
Hey Martins! Quick question: How do I remove the yellow border that always appears when the record…
Ah, you're right - even const is not enough for it. It's still not a "constant" initializer from C…
ssoher —
Oh thank you, learning C with by-default enabled gcc extensions is not a good idea I guess but I d…
That test_instance declaration is not valid C11 code. It is C++ GNU extension. GCC and clang with …
ssoher —
Switched everything to msvc cl and batch files (instead of the previous gcc or clang and makefile)…
ssoher —
Thanks for sharing, I wasn't aware of this project. It doesn't seem to offer any advantage for my …
"I think I should go with VS Build Tools and Windows 10 SDK for the least amount of headaches." Ma…
Jens —
Lots of stuffs have been going on, but before that... ... I was just going to make a small little …
ssoher —
Ah, even more reasons to switch to msvc and compile with cl instead of using msvc runtime through …