qt界面发送windows线程无问题
#include <Windows.h>
#include <stdio.h>
#include <process.h>
uintptr_t hthread = _beginthread(SendThread 0, NULL);
WaitForSingleObject((HANDLE)hthread, INFINITE);
知识就是希望
#include <Windows.h>
#include <stdio.h>
#include <process.h>
uintptr_t hthread = _beginthread(SendThread 0, NULL);
WaitForSingleObject((HANDLE)hthread, INFINITE);