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