- const char *default_name = "Unknown User";
-#if defined(__WIN32__)
-/*
- DWORD nSize = maxSize;
- In VC++ 4.0, results in unresolved symbol __imp__GetUserNameA
- if (GetUserName(buf, &nSize))
- return TRUE;
- else
-*/
- // Could use NIS, MS-Mail or other site specific programs
- // Use wxWindows configuration data
- GetProfileString(WX_SECTION, eUSERNAME, default_name, buf, maxSize - 1);
- return *buf ? TRUE : FALSE;
-// }
-#else
-#if !defined(__WATCOMC__) && !defined(__GNUWIN32__) && wxUSE_PENWINDOWS