c++ - Starting .bin file as an executable -
i'm writing console program windows , need open program. problem executable of program has .bin
extension , code won't open program.
also, when console starting i'd hide it. i've written code appears , dissapears.
my code:
#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; }
Comments
Post a Comment