Posts by Igor Bittencourt • 11 points
2 posts
-
0
votes0
answers105
viewsQ: Error using a c++ dll in a C#code
I created a dll with a code in C++, when I went to use gave an error. function within the dll that I tried to use extern "C" __declspec(dllexport) void ClickLeftMouse(int x, int y){ POINT cursorPos;…
-
1
votes1
answer154
viewsQ: How to simulate mouse clicks in a background program
I’m like a problem to use the functions SendMessage and PostMessage in C# to simulate clicks mouse in a minimized program (in the background). I used this code but it didn’t work, I believe it’s the…