Might improve windows detection

This commit is contained in:
Sean Qureshi 2013-08-17 20:57:35 -07:00
parent ebe4a3f8d0
commit c91e459364

View File

@ -74,7 +74,7 @@ static Messenger *init_tox()
m_callback_action(m, on_action, NULL);
#ifdef __linux__
setname(m, (uint8_t *) "Cool guy", sizeof("Cool guy"));
#elif WIN32
#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
setname(m, (uint8_t *) "I should install GNU/Linux", sizeof("I should install GNU/Linux"));
#else
setname(m, (uint8_t *) "Hipster", sizeof("Hipster"));