Why is there a problem with the DXGI_USAGE flag regardless of what I set it to?
My IDXGIFactory2::CreateSwapChainForComposition fails every time with the following error: DXGI ERROR: IDXGIFactory::CreateSwapChain: The BufferUsage field of the swapchain description contains some DXGI_USAGE flags that are not supported.…
OpenEventLog returns RPC_S_SERVER_UNAVAILABLE on Windows 24H2
We have a tool that parse data from the eventlog. However this has stopped working to access remote servers when run Windows 24H2 machines, with either of the following errors: RPC_S_SERVER_UNAVAILABLE RPC_X_BAD_STUB_DATA The following application…
Filter from SetUnhandledExceptionFilter not capturing C++ exceptions from threads started with _beginthread on windows server 2022
We have found a the change in behaviour of the SetUnhandledExceptionFilter API call. On windows server 2016, this enables any uncaught C++ exceptions to be handled by a registered filter, including on our worker threads. In our filter callback we have…
Restrict ciphers in WinINet during HTTP call
I have an application and I am using WinINet to make HTTP requests with TLS 1.2. However, I have noticed that WinINet is selecting weak cipher suites, specifically ECDHE-RSA-AES128-SHA256 and ECDHE-RSA-AES128-SHA, for secure connections. Since WinINet…
NT Heap free list split mechanics
I am trying to develop my own Heap for an IoT platform, which is supposed to be an equivalent to the NT heap of Windows for my Masters degree. Does the allocator do anything special when it comes to chunk split from free-lists? In which cases the…

Using Arrays with Unions or Structures Not Working
I'm trying to use arrays, with CheckFeatureSupport, rather than check each feature with separate code. I am using different types of elements, so I have to use either union or struct. The problems I am having, is the array of the struct does not point to…
Does UI Automation handle the Narrator "dismiss" gesture?
I'm creating a UIA provider in C++ for Narrator and would like to support any dismiss actions (if they exist). In the Narrator guide it says "Triple-tap with two fingers - Dismiss context menus (imitating the Escape key)". Does this mean the…
content dialog with points
This is what is happening I have an application, where you can draw on a line on a Canvas, and convert those lines in STL, and then save it on your computer private const string NanoFlowFolder = "NanoFlow"; private const int…

Formatting rules for an HTTP cookie to bypass PPP authentication
Dear, I would like to know more about the possibility to bypass PPP authentication with an HTTP cookie, as described in [MS-SSTP]. ClientHTTPCookie: In this string variable, the SSTP layer stores the HTTP cookie that will be passed to the HTTPS layer…

RegisterPointerInputTarget(hwnd,PT_TOUCH) returns ERROR_ACCESS_DENIED
RegisterPointerInputTarget(hwnd,PT_TOUCH) returns ERROR_ACCESS_DENIED,Here is my C++ code: int APIENTRY wWinMain(In HINSTANCE hInstance, In_opt HINSTANCE hPrevInstance, In LPWSTR lpCmdLine, …
If a child control covers the parent window's client area completely, why they both receive the WM_PAINT message?
Today I found that If a child window covers its parent window completely, then swipe (slide) the main window to the one side of the screen (cut by the edge of the screen), then swipe back, they both receive a WM_PAINT message. Since the child window…

Documentation for Earliest Versions of Direct3D
I am wondering if the original documentation for the earliest versions of Direct3D are available anywhere on the Internet? I already have the https://learn.microsoft.com/en-us/windows/win32/classic-directx-graphics link which provides documentation as…
How to improve image quality when painting images with Gdiplus::TextureBrush
I am currently having a problem with broken image drawing when I use Gdiplus::TextureBrush. I know that when drawing images with Graphics::DrawImage, the image still maintains the image quality. But I need to draw images with Gdiplus::TextureBrush…
Where is windows.h in windows SDK
"Include" folder of Windows SDK(https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk/) does not contain "windows.h" header. Where it is?
Where has windows::Win32::Foundation::BOOL been moved to?
https://crates.io/crates/windows version: 0.60.0 error[E0432]: unresolved import `windows::Win32::Foundation::BOOL` --> src\window\setup.rs:32:20 | 32 | Foundation::{BOOL, HWND}, | ^^^^ no `BOOL` in…
createfilemapping size constraints
What is the maximum size that can be used with CreateFileMapping with INVALID_HANDLE_VALUE and SEC_RESERVE, for a virtual paged memory backed file, on windows 11 with 32 gb physical memory I can specify for example 64 gb but on windows 2016 it seems…
How to fix "HRESULT:0x80070578 Invalid window" exception when calling store service function RequestPurchaseAsync() in a Win32 app packed as MSIX package
I'm packing a Win32 app coded by C++ into a MSIX package and trying to publish at Microsoft app store. My app has in-app products to let users purchase. The app is coded in classic Win32 API in C++ and the in-app purchase module is coded by Windows…
strsafe functions performance
hi strsafe.h functions do more checks to do string operations so I think standard string functions is faster is this correct? or should I use strsafe functions? thanks
IUpdate2::CopyToCache method Windows 11
It seems that this method no longer works on Windows 11: https://learn.microsoft.com/en-us/windows/win32/api/wuapi/nf-wuapi-iupdate2-copytocache Interface not registered Do you have an idea?
Load DLL Error: "SXS: BasepCreateActCtx() Calling csrss server failed. Status = 0xc000004b"
My program (NSIS Installer) crashed due to shell32.dll delay loading dui70.dll failed. After confirming, the dui70.dll file was not missing and I found the error message: SXS: BasepCreateActCtx() Calling csrss server failed. Status = 0xc000004b. More…
