How do I fix this error?
argument list for class template "CUIAnimationCallbackBase" is missing template <class IUIAnimationCallback, class CUIAnimationCallbackDerived> class CUIAnimationCallbackBase : public IUIAnimationCallback { public: static…
Developer technologies | C++
E_ACCESSDENIED error when IStream::Seek on Stream created using CreateStreamOnHGlobal on Windows 11 24H2 client
Hello all, After days of debugging, I found I am getting E_ACCESSDENIED error on the server side (Windows Server 2022) when I try to seek to the beginning of a stream: `ULARGE_INTEGER lPos;` LARGE_INTEGER lZero; lZero.QuadPart = 0; auto hrTemp =…
Developer technologies | C++


getting blocker call for listen() in winRT component using httplib.h
Hi, I am using WinRT componet project. I have included httplib.h file I am creating object for server and calling the Get() I am calling listen() method but Its like a bloker call in winRT app. I have also tyied with thread but no luch. Kindly provide…
Developer technologies | C++
Blocked from accessing native Azure Speech SDK (C++/x64) for Unreal Engine integration—installer reports success but does not install required binaries (no speechapi_cxx.h, .lib, or .dll). Project is C++ only; not using .NET or NuGet.
Hello Azure Support, I’m a developer working on a native C++ integration of Azure Speech Services within Unreal Engine, and I’m currently blocked from accessing the correct SDK. Despite multiple attempts, I have been unable to obtain the native C++…
Developer technologies | C++
Allocate / free memory with Visual Studio C++
I have a very simple program int main(void) { double* myVect = new double[10000000]; wait(2); // wait for 2 seconds delete[] myVect; wait(2); return 0; } I execute this program in Debug mode, put a breakpoint on "return 0" and look at the…
Developer technologies | C++
Error trying to call a C# DLL from a C++ console app
I am on Windows 10 with VS 2022. I want to call a C# DLL from a C++ app. I am trying to register the C# DLL using regasm. I am getting the following error: C:\Users\dbaec\OneDrive\Forex\C++_App\C#_DLL\obj\x64\Debug\net6.0-windows7.0>regasm.exe…
Developer technologies | C++
Cannot Save File message keeps popping up in Visual Studio 2022
While making changes to an MFC dialog using the resource editor, and then not making changes for a short while, Visual Studio 2022 keeps popping up a 'Cannot save file' message... It's as though it is trying to write away a temporary file somewhere, but…
Developer technologies | C++
CMake build error at protobuf on C++ project with opencv
When building x86 of the project with opencv, I got an error as blew。 No problem buiding x64。 main] Configuring project: MyProject [proc] Executing command: "C:\Program Files\CMake\bin\cmake.EXE"…
Developer technologies | C++
Ask your question in the language of the Q&A site
To get the most out of Microsoft Q&A, please make sure to submit your questions in the language of the Q&A site you are on. This will ensure that our community of experts can provide accurate and helpful answers to your question.
Developer technologies | C++
LNK2005 error on C++ app when implementing a replacement new and delete
In Visual Studio 2019 C++14 I can build a "hello world" program with a custom new and delete. I'm unable to link a larger program which implements a custom new and delete replacement. The error is LNK2005 "void * __cdecl operator…
Developer technologies | C++
Replacing Deprecated Extended Stored Procedures with CLR-Based C# Wrappers
Hi Team, Currently, we bind a C++ DLL to SQL Server using an extended stored procedure. Since extended stored procedures are deprecated, is it possible to create a C# wrapper for the C++ DLL and register this C# wrapper as a CLR stored procedure in SQL…
Developer technologies | C++
CPU and disk usage values which we get from windows API (Using PDH) is not same as the value we see in task manager
I am currently using the PDH (Performance Data Helper) API to log CPU and Disk utilization data in a CSV file. Below is a snippet of the code I am using: #include <windows.h> #include <pdh.h> #include <stdio.h> #include…
Windows development | Windows API - Win32
Windows for business | Windows Client for IT Pros | Devices and deployment | Other
Windows for business | Windows Client for IT Pros | User experience | Other
Developer technologies | C++
how to use lock in thread?
I have thread1 and thread3 and both of it will edit the std::queue how to use lock to it? both of the thread will edit the std::queue in loop.
Developer technologies | C++
get bound from winrt::Windows::Graphics::Capture::GraphicsCaptureItem
0 is it possible to retrieve bound rect (x,y, height, width) from winrt::Windows::Graphics::Capture::GraphicsCaptureItem, I see only Size is supported. Any specific reason its hidden?…
Developer technologies | C++

How to troubleshoot and resolve the "win32kfull.sys" error:
The text on the screen is a prompt for users to provide detailed information about a problem they are experiencing, likely within a community forum or support platform. This question is related to the following Learning Module
Developer technologies | C++
Bitlocker using win 32 api
I have created a function inside my agent to apply bitlocker on a drive using win api, even though the execution is completed successfully the drives are not getting locked using bitlocker
Developer technologies | C++
Afterimage appears in client when dragging a corner of the window.
I coded a program trying to generate a maze in the client. When I dragged the left-top corner of the window,it happens like this: It is a Win32 Window APP and here's the code(part): void Maze(); LRESULT WndProc( HWND hWnd, UINT uMsg, WPARAM…
Developer technologies | C++

I need to understand if and how the win32 API SetDIBitsToDevice() allocates extra memory buffers during its process
Hi, I could not find an appropriate tag for my problem so I selected the one I felt was most likely to give me relevant response. I am currently working with an application in which it is extremely important that no copies of any data is retained in…
Developer technologies | C++
Confirm For ECCN For Visual C++ Redistributable / Microsoft Visual Studio Redistributables / VC++ Runtime Dlls
Hello, here I want to confirm the accurate ECCN info of below Microsoft Software Products: Visual C++ Redistributable for Visual Studio 2010 SP1 Visual C++ Redistributable for Visual Studio 2012 Update 4 Visual C++ Redistributable for Visual…
Developer technologies | C++
Are there files missing from Windows SDK 10.0.26100.0 and how can I update them?
I'm trying to use the XAML Islands, but there are header files that I get the error E1696: cannot open source file. I tried the solution Compile your newly created project at least once. Then right-click in the source code editor > Rescan > Rescan…