让自己编写的程序不出现界面
如何让自己编写的程序不出现界面,也不出现dos窗口,且运行一次就自动退出。
虾米意思??米明白
#define OK 1;
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
exit(0);
return OK;
}
(我胡写的...表当真)