我正在为Windows编写一个控制台程序,我需要打开另一个程序。我的问题是该程序的可执行文件具有.bin
扩展名,我的代码不会将其作为程序打开。
此外,当我的控制台启动时,我想隐藏它。我已经编写了一些代码来执行此操作,但它会出现,然后很快消失。
我的代码:
#define _WIN32_WINNT 0x0500
#include <windows.h>
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
int main()
{
HWND hWnd = GetConsoleWindow();
ShowWindow( hWnd, SW_HIDE );
system("start client.bin --argument");
return 0;
}