680 questions with Windows development | Windows API - Win32 tags
Cloud File API FAQ
Based on the introduction from Windows official documentation at https://learn.microsoft.com/en-us/windows/win32/cfapi/build-a-cloud-file-sync-engine and the Cloud Mirror Sample, we attempted to develop a SyncEngine independently. However, we…
Windows development Windows API - Win32
DataGridView DateTime Column type?
Hi experts In VB.net WinForms (.Net Framework 4.8) DataGridView Add/Edit Column > Column Type has these…
Windows development Windows API - Win32
Win32 API likes Credential Provider APIs Support on ARM64 Architecture
Are all the following Credential Provider APIs fully supported on the ARM64 architecture? IConnectableCredentialProviderCredential ICredentialProvider ICredentialProviderCredential ICredentialProviderCredential2 …
Windows development Windows API - Win32
Is it possible to programmatically query the contents of an indexed file with custom file format?
Hi, I am trying to index the contents of a file with custom file format using the Windows Search Indexer. As per the Windows SDK documentation, I need to implement a filter handler and add it to the Windows Registry in order for Windows Search to be able…
Windows development Windows API - Win32
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…
Windows development Windows API - Win32
Windows for business Windows Client for IT Pros User experience Other
Developer technologies C++
Idioma de los videos
Los videos estan en idioma ingles con subtitulos en ese mismo idioma, ¿puedo cambiar a español o tener subtitulos en español?
Windows development Windows API - Win32
How to update ACL permission on placeholders created by CFAPI (Cloud Filtre API)
Trying to experiment on creating a VFS (Virtual File System ex OneDrive sort of) on windows using CFAPI (Cloud Filter Win32 API), this VFS basically replicates the cloud file system on the local desktop. I need to update the ACL permissions on…
Windows development Windows API - Win32
Why doesn't DnsServiceRegister create mDNS A/AAAA records?
Hello, I am trying to register a DNS-SD service using the win32 APIs. When I call DnsServiceRegister with valid IPv4 and IPv6 addresses, I don't see these addresses broadcasted by the system. I inspected the mDNS traffic with Wireshark and I only see…
Windows development Windows API - Win32
My 'Send' command is not blocking when it should, and instead crashes the socket connection
My Client successfully connects to the Server and starts sending data using the 'Send' Winsock API. It continues sending data at a rate faster than the Server can process it. On Windows 10, the socket behaves as advertised, and the 'Send' blocks until…
Windows development Windows API - Win32
how to load .stl to direct3d?
I wonder how to use the file and thank you very much.
Windows development Windows API - Win32

Issue with Wallpaper Turning Black After Logout/Login Using SystemParametersInfo in Remote Control
Hi, I am remotely controlling a Windows device through an agent. I set the desktop wallpaper using the following APIs: SystemParametersInfo(SPI_GETDESKWALLPAPER, MAX_PATH, m_strWallPaperName, 0); SystemParametersInfo(SPI_SETDESKWALLPAPER, 0,…
Windows development Windows API - Win32
How to turn off visual styles for a control using SetWindowTheme function on Windows 11?
With "visual styles" enabled by the host application, radio button and checkbox controls no longer send WM_CTLCOLORSTATIC messages. We rely on these messages to provide dark mode support by customizing colors. The solution was to disable visual…
Windows development Windows API - Win32

What should I do about this Windows Authoring Guide infinite login loop?
I’m trying to contribute to this GitHub repository: https://github.com/MicrosoftDocs/win32. Its CONTRIBUTING.md file says: You can find guidance on using this repo in the Windows Authoring Guide. Whenever I click on that Windows Authoring Guide link,…
Windows development Windows API - Win32
Behaviour of CoRegisterClassObject and PackagedCOM
I'm trying to build my CommandPalette extension, which is a out-of-process COM server. However, my native extension fails getting picked up by CoCreateInstance in CmdPal, causing a null pointer on the CmdPal side, while C#-based alternative…
Windows development Windows API - Win32
How to use DeviceIOCommand (IOCTL_STORAGE_PROTOCOL_COMMAND) integrate with ufs device
Hi, Currently i'm working on sending query request upiu to ufs device by using DeviceIOControl(IOCTL_STORAGE_PROTOCOL_COMMAND) but i'm getting ERROR_INVALID_FUNCTION on getLastError(). Can you please provide sample code or documentation on…
Windows development Windows API - Win32
Developer technologies C++
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.…
Windows development Windows API - Win32
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…
Windows development Windows API - Win32

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…
Windows development Windows API - Win32

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…
Windows development Windows API - Win32

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…