On 5/30/06, Robert Hicks <[EMAIL PROTECTED]> wrote:
let MSWIN = has("win16") || has("win32") || has("win64") || has("win95")
|| has("win32unix")
Is there a "windows" variable that has all these in it?
:Robert
I don't see one, but here's the invidivual ones I found in the "f_has()" code:
#ifdef WIN16
"win16",
#endif
#ifdef WIN32
"win32",
#endif
#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
"win32unix",
#endif
#ifdef WIN64
"win64",
#endif
"gui_win16",
#endif
#ifdef FEAT_GUI_W32
"gui_win32",
# ifdef FEAT_GUI_W32
else if (STRICMP(name, "gui_win32s") == 0)
n = gui_is_win32s();
#if defined(WIN3264)
else if (STRICMP(name, "win95") == 0)
n = mch_windows95();