1 /**************************************************************************** 2 * Copyright (c) 2008-2009,2010 Free Software Foundation, Inc. * 3 * * 4 * Permission is hereby granted, free of charge, to any person obtaining a * 5 * copy of this software and associated documentation files (the * 6 * "Software"), to deal in the Software without restriction, including * 7 * without limitation the rights to use, copy, modify, merge, publish, * 8 * distribute, distribute with modifications, sublicense, and/or sell * 9 * copies of the Software, and to permit persons to whom the Software is * 10 * furnished to do so, subject to the following conditions: * 11 * * 12 * The above copyright notice and this permission notice shall be included * 13 * in all copies or substantial portions of the Software. * 14 * * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * 16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * 17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * 18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * 19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * 20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * 21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * 22 * * 23 * Except as contained in this notice, the name(s) of the above copyright * 24 * holders shall not be used in advertising or otherwise to promote the * 25 * sale, use or other dealings in this Software without prior written * 26 * authorization. * 27 ****************************************************************************/ 28 29 /**************************************************************************** 30 * Author: Thomas Dickey, 2008-on * 31 * * 32 ****************************************************************************/ 33 34 /* $Id: nc_mingw.h,v 1.3 2010/09/25 22:16:12 juergen Exp $ */ 35 36 #ifndef NC_MINGW_H 37 #define NC_MINGW_H 1 38 39 #ifdef WINVER 40 # if WINVER < 0x0501 41 # error WINVER must at least be 0x0501 42 # endif 43 #else 44 # define WINVER 0x0501 45 #endif 46 #include <windows.h> 47 48 #undef sleep 49 #define sleep(n) Sleep((n) * 1000) 50 51 #undef gettimeofday 52 #define gettimeofday(tv,tz) _nc_gettimeofday(tv,tz) 53 54 #include <sys/time.h> /* for struct timeval */ 55 56 extern int _nc_gettimeofday(struct timeval *, void *); 57 58 #undef HAVE_GETTIMEOFDAY 59 #define HAVE_GETTIMEOFDAY 1 60 61 #define SIGHUP 1 62 #define SIGKILL 9 63 #define getlogin() "username" 64 65 #undef wcwidth 66 #define wcwidth(ucs) _nc_wcwidth(ucs) 67 extern int _nc_wcwidth(wchar_t); 68 69 #endif /* NC_MINGW_H */ 70