Need current logitech drivers in a zip. Is it possible for someone to install them in a zip and provide a download link? trying to get my G27 to work on a public pc
...
namespace LogitechSteeringWheel
{
// If your game does not use any of the functions in this class, you
// may set following value to FALSE to keep Logitech Gaming Software
// from getting started unnecessarily.
CONST BOOL START_LOGITECH_SOFTWARE = TRUE;
...
ControllerProperties::ControllerProperties(HWND hwnd)
...
// Check Logitech Gaming Software version
ZeroMemory(&m_wingmanVersion, sizeof(m_wingmanVersion));
if (SUCCEEDED(m_gamingSoftwareManager.GetWingmanSWVersion(m_wingmanVersion)))
{
if (m_wingmanVersion.major == 5 && m_wingmanVersion.minor >= 3
|| m_wingmanVersion.major > 5)
{
m_currentVersionSupportsGetSetProperties = TRUE;
}
...
// Start Wingman gaming software if necessary
if (START_LOGITECH_SOFTWARE)
{
if (!m_gamingSoftwareManager.IsEventMonitorRunning())
{
// Only start event monitor if it supports getting and setting properties
if (m_currentVersionSupportsGetSetProperties)
{
m_gamingSoftwareManager.StartEventMonitor();
m_hadToStartEMon = TRUE;
}
}
}
...