도스 커맨드 실행하기
커맨드창을 띄워서 도스 커맨드를 실행하는 두가지 함수. 자꾸 잊어버리는구먼. 1. system("cls"); 2. ShellExecute(NULL, "open", "iexplore.exe", "http://wiki.lge.com/lab3/autokeypad", NULL, SW_SHOWNORMAL); 3. #include void KShellExecute(HWND handle, LPCTSTR exe, LPCTSTR param, LPCTSTR dir) { DWORD ExitCode; SHELLEXECUTEINFO SEInfo; memset( &SEInfo, 0, sizeof(SEInfo)); SEInfo.cbSize = sizeof(SHELLEXECUTEINFO); SEInfo.fMask = SEE_MASK..
2011. 12. 15.
공개 GUI 라이브러리 링크 모음
공개 GUI 라이브러리 링크 모음 FLTK - http://www.fltk.org/index.php 인용: ; 멀티 플랫폼 ; UI 툴 제공 ; 포럼 ; Article, FAQ, Developer Document GTK+ - http://www.gtk.org/ 인용: ; 멀티 플랫폼 ; 수많은 GNU 응용 프로그램에 사용됨 ; 메일링 리스트 ; FAQ, Tutorial, API Reference wxWidgets - http://www.wxwidgets.org/ 인용: ; 멀티 플랫폼 ; 메일링 리스트, 게시판, 위키 등 ; FAQ, Book, Reference, Presentations, Tutorials, Courses, Sample Code NGL - http://home.gna.org/ngl/ab..
2011. 12. 14.