Lines Matching refs:aExecInf
108 SHELLEXECUTEINFOW aExecInf; in ShowReleaseNotes() local
109 ZeroMemory( &aExecInf, sizeof( aExecInf ) ); in ShowReleaseNotes()
111 aExecInf.cbSize = sizeof( aExecInf ); in ShowReleaseNotes()
112 aExecInf.fMask = SEE_MASK_FLAG_DDEWAIT | SEE_MASK_FLAG_NO_UI; in ShowReleaseNotes()
113 aExecInf.lpVerb = TEXT("open"); in ShowReleaseNotes()
114 aExecInf.lpFile = sFullPath; in ShowReleaseNotes()
115 aExecInf.lpDirectory = NULL; in ShowReleaseNotes()
116 aExecInf.nShow = SW_SHOWNORMAL; in ShowReleaseNotes()
119 ShellExecuteEx( &aExecInf ); in ShowReleaseNotes()
167 SHELLEXECUTEINFOW aExecInf; in ShowSurveyAfter() local
168 ZeroMemory( &aExecInf, sizeof( aExecInf ) ); in ShowSurveyAfter()
170 aExecInf.cbSize = sizeof( aExecInf ); in ShowSurveyAfter()
171 aExecInf.fMask = SEE_MASK_FLAG_DDEWAIT | SEE_MASK_FLAG_NO_UI; in ShowSurveyAfter()
172 aExecInf.lpVerb = TEXT("open"); in ShowSurveyAfter()
174 aExecInf.lpFile = TEXT("http://www.openoffice.org/support/"); in ShowSurveyAfter()
175 aExecInf.lpDirectory = NULL; in ShowSurveyAfter()
176 aExecInf.nShow = SW_SHOWNORMAL; in ShowSurveyAfter()
179 ShellExecuteEx( &aExecInf ); in ShowSurveyAfter()