Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/en-US…
std::condition_variable destructor crashes on VS2012
The C++ standard requires as the only precondition for this destructor to work as expected that no threads wait on the condition variable: " There are no threads blocked on *this in a call to wait (), wait_for (), orwait_until ()." I made sure the this precondition is met, but still got the crash.
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/secur…
Interop C++ --> COM --> C#
I have a C++ DLL that is calling functions from a C# DLL using COM. The C++ dll is more or less of a wrapper.
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/forums/vstud…
Storing a pointer to an object - social.msdn.microsoft.com
1 To mean what C++ would call a pointer - e.g if you have SomeClass myObj; then myObj is a reference variable in .Net-speak, or a pointer to an object of type SomeClass in C++ speak. 2 In parameter passing where a parameter passed as ref can be changed by the method so as to affect its value outside the method.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/vstudio/e…
What to include for wglGetCurrentContext ()
Note: C++ does not support default-int and so on. There are about 180 of those errors. I get this even if I move my #include statement to the top of my .cpp file, so I know that it isn't being interfered with. Wingdi.h just appears to be incomplete. So, what am I doing wrong? What should I include to get this to work? Wednesday, April 6, 2016 9 ...
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/vstud…
Lower Level Keyboard Hook problem C++
I am working on a Very Simple Low Level Hook Program in which the Program 'cout<<' some thing when a Letter is pressed but the problem is that the Hook doesn't work. The Code: #include<Windows.h> #include<iostream> using namespace std; HHOOK hHock = NULL; LRESULT CALLBACK MyLowLevelHook ( int nCode , WPARAM wParam , LPARAM lParam) { cout<<"Key is Pressed"; return CallNextHookEx (hHock , nCode ...
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/sqlserver…
c++/cli array in value struct - social.msdn.microsoft.com
I found this information somewhere on the web from one of the Visual Studio C++/CLI developers. This quick template library will allow a fixed array in a value type by using the inline_array<type,size> data.
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/vstud…
Visual Studio 2015 intelisense is too slow
Is the C++ project very big? Do you use any tools such as Resharper or Node tools for visual studio? Is the slowness only happened with C++ project? If you create a simple hello world C++ project, does it also need over 10 seconds to appear? You may refer to the similar issue in link below to check if it is your scenario.
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/en-US…
C/C++ DLL Obfuscator - social.msdn.microsoft.com
Could someone tell me as which Obfuscator tool to use for DLL/Exe generated by VC++ C/C++ code.
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/en-US…
Visual Studio Debugging shows incorrect values
Currently, I'm debugging a C++ program in VS2005 and while debugging i get garbage values in the debug Watch & Locals windows.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/55e…
C++ - Serializing class instances with MSMQ
C# provides an excellent mechanism for serialising instances of classes over MSMQ (I'm using an XMLFormatter). I can't seem to find any documentation about how to serialise/deserialise instances of classes over MSMQ in C++.