kyuseo의 게임 프로그래밍
바탕화면 보기 프로그램 소스코드 본문
개요.. |
바탕화면 보기를 할 수 있는 프로그램 소스코드를 공개합니다.
소스코드 |
// 바탕화면보기만들기... CString str = "[Shell] \r\n" "Command=2 \r\n" "IconFile=explorer.exe,3 \r\n" "[Taskbar] \r\n" "Command=ToggleDesktop \r\n";
CPFile::WriteString( "desk.scf", str );
// 바탕화면보기를실행한다. ShellExecute( m_hWnd, "", "desk.scf", NULL, NULL, SW_SHOWNORMAL ); |