完成微信多开和打开计算器

This commit is contained in:
Mike Solar
2023-07-30 06:48:12 +08:00
parent 9fac130a24
commit f1ffe592f3
14 changed files with 866 additions and 4 deletions

10
startcalc/main.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <Windows.h>
#include <stdlib.h>
int WINAPI WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
PSTR nCmdLine,
int iCmdShow) {
WinExec("calc.exe", SW_SHOW);
return 0;
}