[API] ShellExecute Function
1. ShellExecute Function - 프로세스를 생성하는 함수. - 하나의 프로그램에서 또 다른 프로세스를 생성할 때 사용 가능. HINSTANCE ShellExecute ( _In_Opt_ HWND hWnd, // 부모 윈도우 핸들 _In_Opt_ LPCTSTR lpOperation, // 동작 명령(열기, 탐색, 인쇄, 찾기 등) _In LPCTSTR lpFile, // 경로(혹은 대상) _In_Opt_ LPCTSTR lpParameters, // 프로그램에 전달할 인자(매개변수) _In_Opt_ LPCTSTR lpDirectory, // 현재 디렉토리 _In INT nShowCmd // 보여주기 옵션 ); 1) 프로그램 실행 ShellExecute(NULL, "open", ..
더보기