为什么我用 DEV c++ 5.11编译器运行 c++ 程序(无论什么程序),都会运行失败,还弹出一个 basic_string.tcc 的文件
除了这个可以运行
#include<windows.h>
using namespace std;
int main(){
Sleep(1000);
::SetCursorPos(10,10);
mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);
return 0;
}