成都创新互联网站制作重庆分公司

获取命令行参数

VOID StartMain()
{
	LPWSTR *szArglist;
	int nArgs;
	int i;
	szArglist = CommandLineToArgvW(GetCommandLineW(), &nArgs);
	if (NULL == szArglist)
	{
		wprintf(L"CommandLineToArgvW failed\n");
		return ;
	}
	else
	{
		for (i = 0; i < nArgs; i++)
		{
			CString strTemp;
			strTemp.Format(_T("%s"), szArglist[1]);
			if (strTemp == _T("1"))
				StartPrintServer();
			if (strTemp == _T("2"))
				StarUserManage();

		}
		//释放CommandLineToArgvW参数占用的内存.
		LocalFree(szArglist);
		return;
	}
}

新闻名称:获取命令行参数
转载注明:http://cxhlcq.com/article/ihjjig.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部