Improve screen spy efficiency with DXGI

This commit is contained in:
yuanyuanxiang
2025-03-13 23:34:33 +08:00
parent 0d6d171909
commit 7bcf11ce0a
44 changed files with 752 additions and 232 deletions

View File

@@ -20,7 +20,8 @@ struct ThreadInfo
BOOL run;
HANDLE h;
IOCPClient *p;
ThreadInfo() : run(TRUE), h(NULL), p(NULL){ }
void* user;
ThreadInfo() : run(TRUE), h(NULL), p(NULL), user(nullptr){ }
};
class CKernelManager : public CManager