[Csnd-dev] getcwd on Windows
Date | 2018-01-13 16:28 |
From | John |
Subject | [Csnd-dev] getcwd on Windows |
I saw a suggestion that the function getcwd is not declared in Windows; on GNU/Linux it is declared in unistd.h but I suspect MSVC does not have that header. |
Date | 2018-01-13 17:09 |
From | Victor Lazzarini |
Subject | Re: [Csnd-dev] getcwd on Windows |
There’s this
https://msdn.microsoft.com/en-us/library/sf98bd4y.aspx
Victor Lazzarini
Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland
|
Date | 2018-01-13 17:21 |
From | jpff |
Subject | Re: [Csnd-dev] getcwd on Windows |
I think Engine/envvar.c needs #if defined(WIN32) && !defined(__CYGWIN__) # include |