#define WIN32_NO_STATUS #define WIN32_LEAN_AND_MEAN #include #include #include #include #define REGEDIT _T("regedit.exe") int WINAPI _tWinMain(HINSTANCE hCurInst, HINSTANCE hPrevInst, LPTSTR lpsCmdLine, int nCmdShow) { TCHAR szPath[MAX_PATH]; if(GetWindowsDirectory(szPath, MAX_PATH)) { PathAppend(szPath, REGEDIT); ShellExecute(NULL, NULL, szPath, lpsCmdLine, NULL, nCmdShow); } else { ShellExecute(NULL, NULL, REGEDIT, lpsCmdLine, NULL, nCmdShow); } return 0; }