MCPcopy Create free account
hub / github.com/Squirrel/Squirrel.Windows / GetInstallerMainInstructionForVersion

Method GetInstallerMainInstructionForVersion

src/Setup/FxHelper.cpp:286–300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284}
285
286UINT CFxHelper::GetInstallerMainInstructionForVersion(NetVersion version)
287{
288 if (version >= NetVersion::net48) {
289 return IDS_FXINSTRUCTION48;
290 }
291
292 if (version >= NetVersion::net47) {
293 return IDS_FXINSTRUCTION47;
294 }
295
296 if (version >= NetVersion::net46) {
297 return IDS_FXINSTRUCTION46;
298 }
299 return IDS_FXINSTRUCTION;
300}
301
302UINT CFxHelper::GetInstallerContentForVersion(NetVersion version)
303{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected