Home | History | Annotate | Download | only in FindSafari

Lines Matching refs:TEXT

41 #define LOG_WARNING(...) LOG(TEXT("WARNING: "), __VA_ARGS__)
42 #define LOG_ERROR(...) LOG(TEXT("ERROR: "), __VA_ARGS__)
62 LPCTSTR installPathKeyString = TEXT("SOFTWARE\\Apple Computer, Inc.\\Safari");
63 LPCTSTR installPathWin64KeyString = TEXT("SOFTWARE\\Wow6432Node\\Apple Computer, Inc.\\Safari");
69 LOG_WARNING(TEXT("Failed to open registry key %s\n"), installPathKeyString);
72 LPTSTR webKitPath = getStringValue(installPathKey, TEXT("InstallDir"));
75 LOG_WARNING(TEXT("Couldn't retrieve value for registry key %s\n"), installPathKeyString);
85 LOG_ERROR(TEXT("Couldn't determine installed Safari path\n"));
94 if (!_tcscmp(argv[i], TEXT("/printSafariLauncher"))) {
98 if (!_tcscmp(argv[i], TEXT("/printSafariEnvironment"))) {
102 if (!_tcscmp(argv[i], TEXT("/debugger"))) {
114 _tprintf(TEXT("%s\n"), path);
120 TEXT("@echo off"),
121 TEXT("del /s /q \"%%TMP%%\\WebKitNightly\""),
122 TEXT("mkdir 2>NUL \"%%TMP%%\\WebKitNightly\\Safari.resources\""),
123 TEXT("mkdir 2>NUL \"%%TMP%%\\WebKitNightly\\WebKit.resources\""),
124 TEXT("mkdir 2>NUL \"%%TMP%%\\WebKitNightly\\JavaScriptCore.resources\""),
125 TEXT("xcopy /y /i /d \"%sSafari.exe\" \"%%TMP%%\\WebKitNightly\""),
126 TEXT("if exist \"%sSafari.dll\" xcopy /y /i /d \"%sSafari.dll\" \"%%TMP%%\\WebKitNightly\""),
127 TEXT("xcopy /y /i /d /e \"%sSafari.resources\" \"%%TMP%%\\WebKitNightly\\Safari.resources\""),
128 TEXT("xcopy /y /i /d /e \"%splugins\" \"%%TMP%%\\WebKitNightly\\plugins\""),
129 TEXT("xcopy /y /i /d WebKit.dll \"%%TMP%%\\WebKitNightly\""),
130 TEXT("xcopy /y /i /d WebKit.pdb \"%%TMP%%\\WebKitNightly\""),
131 TEXT("xcopy /y /i /d /e WebKit.resources \"%%TMP%%\\WebKitNightly\\WebKit.resources\""),
132 TEXT("xcopy /y /i /d JavaScriptCore.dll \"%%TMP%%\\WebKitNightly\""),
133 TEXT("xcopy /y /i /d JavaScriptCore.pdb \"%%TMP%%\\WebKitNightly\""),
134 TEXT("xcopy /y /i /d /e JavaScriptCore.resources \"%%TMP%%\\WebKitNightly\\JavaScriptCore.resources\""),
135 TEXT("set PATH=%%CD%%;%s;%%PATH%%"),
138 LPCTSTR command = TEXT("\"%TMP%\\WebKitNightly\\Safari.exe\"");
141 TEXT("%s"),
145 TEXT("if exist \"%%DevEnvDir%%\\VCExpress.exe\" ("),
146 TEXT("\"%%DevEnvDir%%\\VCExpress.exe\" /debugExe %s"),
147 TEXT(") else ("),
148 TEXT("\"%%DevEnvDir%%\\devenv.exe\" /debugExe %s"),
149 TEXT(")"),
154 _tprintf(TEXT("\n"));
163 _tprintf(TEXT("\n"));