How to get the DAW name / VST host?

Just being curious: how is it possible to get the DAW name / VST host from the VST I’m coding?

This is for declaring the VST’s name :

bool myplugin::getVendorString(...)

but I would like the contrary: how to get the DAW name in the VST?

With VST3 you can use the interface: Vst::IHostApplication

tresult PLUGIN_API MyPluginController::initialize (FUnknown* context)
{
	FUnknownPtr<Vst::IHostApplication> hostApplication (context);
	if (hostApplication)
	{
		String128 name;
		hostApplication->getName (name):
		...
	}
	....
}