'precomp.h' -><precomp.h>

svn path=/trunk/; revision=19766
This commit is contained in:
Steven Edwards 2005-11-30 05:35:59 +00:00
parent eb1fd34ff9
commit 7b168f1206
242 changed files with 243 additions and 243 deletions

View file

@ -6,7 +6,7 @@
* PROGRAMMER: Eric Kohl (Imported from DJGPP) * PROGRAMMER: Eric Kohl (Imported from DJGPP)
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -6,7 +6,7 @@
* PROGRAMMER: Eric Kohl (Imported from DJGPP) * PROGRAMMER: Eric Kohl (Imported from DJGPP)
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @unimplemented * @unimplemented

View file

@ -8,7 +8,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -8,7 +8,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -10,7 +10,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
int _getche(void) int _getche(void)
{ {

View file

@ -8,7 +8,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* FIXME PeekConsoleInput returns more than keyboard hits * FIXME PeekConsoleInput returns more than keyboard hits

View file

@ -8,7 +8,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -10,7 +10,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
int char_avail = 0; int char_avail = 0;
int ungot_char = 0; int ungot_char = 0;

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <ctype.h> #include <ctype.h>
#include <direct.h> #include <direct.h>
#include <tchar.h> #include <tchar.h>

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <direct.h> #include <direct.h>
#include <stdlib.h> #include <stdlib.h>
#include <tchar.h> #include <tchar.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <direct.h> #include <direct.h>
#include <internal/debug.h> #include <internal/debug.h>
#include <tchar.h> #include <tchar.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <ctype.h> #include <ctype.h>
#include <direct.h> #include <direct.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <ctype.h> #include <ctype.h>
#include <direct.h> #include <direct.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <direct.h> #include <direct.h>
#include <tchar.h> #include <tchar.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <direct.h> #include <direct.h>
#include <tchar.h> #include <tchar.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#ifdef __GNUC__ #ifdef __GNUC__

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <excpt.h> #include <excpt.h>
#ifdef __GNUC__ #ifdef __GNUC__

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <math.h> #include <math.h>

View file

@ -1,5 +1,5 @@
#define WIN32_NO_STATUS #define WIN32_NO_STATUS
#include "precomp.h" #include <precomp.h>
#include <windows.h> #include <windows.h>
#define NTOS_MODE_USER #define NTOS_MODE_USER
#include <ndk/umtypes.h> #include <ndk/umtypes.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
/* /*

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
#include <internal/ieee.h> #include <internal/ieee.h>

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
unsigned int _statusfp( void ); unsigned int _statusfp( void );

View file

@ -1,6 +1,6 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
#define X87_CW_IM (1<<0) /* Invalid operation mask */ #define X87_CW_IM (1<<0) /* Invalid operation mask */
#define X87_CW_DM (1<<1) /* Denormal operand mask */ #define X87_CW_DM (1<<1) /* Denormal operand mask */

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
#include <internal/ieee.h> #include <internal/ieee.h>
/* /*

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
#include <math.h> #include <math.h>
#include <internal/ieee.h> #include <internal/ieee.h>

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
#include <internal/tls.h> #include <internal/tls.h>
/* /*

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @unimplemented * @unimplemented

View file

@ -16,7 +16,7 @@ License along with the GNU C Library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave, not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */ Cambridge, MA 02139, USA. */
#include "precomp.h" #include <precomp.h>
/* /*

View file

@ -18,7 +18,7 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
#include "precomp.h" #include <precomp.h>
double _logb (double __x) double _logb (double __x)
{ {

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
#include <internal/ieee.h> #include <internal/ieee.h>
/* /*

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <tchar.h> #include <tchar.h>
#define NDEBUG #define NDEBUG

View file

@ -8,7 +8,7 @@
* 25/11/05: Created * 25/11/05: Created
*/ */
#include "precomp.h" #include <precomp.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <tchar.h> #include <tchar.h>

View file

@ -1,5 +1,5 @@
/* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -8,7 +8,7 @@
* 25/11/05: Created * 25/11/05: Created
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -8,7 +8,7 @@
* 25/11/05: Created * 25/11/05: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <tchar.h> #include <tchar.h>
/* /*

View file

@ -1,5 +1,5 @@
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
int _fmode = O_TEXT; int _fmode = O_TEXT;

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
//#define SETFILEPOINTEREX_AVAILABLE //#define SETFILEPOINTEREX_AVAILABLE

View file

@ -13,7 +13,7 @@
/* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -36,7 +36,7 @@
// possibly store extra information at the handle // possibly store extra information at the handle
#include "precomp.h" #include <precomp.h>
#if !defined(NDEBUG) && defined(DBG) #if !defined(NDEBUG) && defined(DBG)
#include <stdarg.h> #include <stdarg.h>

View file

@ -9,7 +9,7 @@
* 28/12/98: Appropriated for Reactos * 28/12/98: Appropriated for Reactos
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -12,7 +12,7 @@
* behavior for line-buffered streams (KJK::Hyperion) * behavior for line-buffered streams (KJK::Hyperion)
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -8,7 +8,7 @@
* UPDATE HISTORY: * UPDATE HISTORY:
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -8,7 +8,7 @@
* 25/11/05: Created * 25/11/05: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,5 +1,5 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -8,7 +8,7 @@
* 25/11/05: Created * 25/11/05: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -8,7 +8,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -8,7 +8,7 @@
* 25/11/05: Created * 25/11/05: Created
*/ */
#include "precomp.h" #include <precomp.h>
#include <sys/utime.h> #include <sys/utime.h>
/* /*

View file

@ -8,7 +8,7 @@
* 25/11/05: Created * 25/11/05: Created
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -13,7 +13,7 @@
/* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -12,7 +12,7 @@
// rember to interlock the allocation of fileno when making this thread safe // rember to interlock the allocation of fileno when making this thread safe
// possibly store extra information at the handle // possibly store extra information at the handle
#include "precomp.h" #include <precomp.h>
#if !defined(NDEBUG) && defined(DBG) #if !defined(NDEBUG) && defined(DBG)
#include <stdarg.h> #include <stdarg.h>
#endif #endif

View file

@ -8,7 +8,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -8,7 +8,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -8,7 +8,7 @@
* 25/11/05: Created * 25/11/05: Created
*/ */
#include "precomp.h" #include <precomp.h>
#include <sys/utime.h> #include <sys/utime.h>
/* /*

View file

@ -4,7 +4,7 @@
* Copyright 2000 Jon Griffiths * Copyright 2000 Jon Griffiths
*/ */
#include "precomp.h" #include <precomp.h>
#include <locale.h> #include <locale.h>
#include <internal/tls.h> #include <internal/tls.h>

View file

@ -15,7 +15,7 @@
* inflicting too much of a performance hit. * inflicting too much of a performance hit.
* *
*/ */
#include "precomp.h" #include <precomp.h>
/* Approximate square roots of DBL_MAX and DBL_MIN. Numbers /* Approximate square roots of DBL_MAX and DBL_MIN. Numbers
between these two shouldn't neither overflow nor underflow between these two shouldn't neither overflow nor underflow

View file

@ -10,7 +10,7 @@
* ==================================================== * ====================================================
*/ */
#include "precomp.h" #include <precomp.h>
//static const double one = 1.0; //static const double one = 1.0;

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <mbstring.h> #include <mbstring.h>
/* /*

View file

@ -8,7 +8,7 @@
* 12/04/99: Created * 12/04/99: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* code page 952 only * code page 952 only

View file

@ -8,7 +8,7 @@
* 25/11/05: Added license header * 25/11/05: Added license header
*/ */
#include "precomp.h" #include <precomp.h>
#include <mbstring.h> #include <mbstring.h>
#include <mbctype.h> #include <mbctype.h>

View file

@ -8,7 +8,7 @@
* 12/04/99: Created * 12/04/99: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* code page 952 only * code page 952 only

View file

@ -8,7 +8,7 @@
* 12/04/99: Created * 12/04/99: Created
*/ */
#include "precomp.h" #include <precomp.h>
#include <mbstring.h> #include <mbstring.h>
#include <mbctype.h> #include <mbctype.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <string.h> #include <string.h>
/* /*

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <mbstring.h> #include <mbstring.h>
#include <string.h> #include <string.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <mbstring.h> #include <mbstring.h>
/* /*

View file

@ -9,7 +9,7 @@
* 12/04/99: Created * 12/04/99: Created
*/ */
#include "precomp.h" #include <precomp.h>
#include <mbstring.h> #include <mbstring.h>
#include <stdlib.h> #include <stdlib.h>

View file

@ -7,7 +7,7 @@
* UPDATE HISTORY: * UPDATE HISTORY:
* 12/04/99: Created * 12/04/99: Created
*/ */
#include "precomp.h" #include <precomp.h>
#include <mbstring.h> #include <mbstring.h>
#include <mbctype.h> #include <mbctype.h>

View file

@ -8,7 +8,7 @@
* 28/12/98: Created * 28/12/98: Created
*/ */
#include "precomp.h" #include <precomp.h>
static char *__rt_err_msg[] = static char *__rt_err_msg[] =
{ {

View file

@ -3,7 +3,7 @@
* ReactOS MSVCRT.DLL Compatibility Library * ReactOS MSVCRT.DLL Compatibility Library
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -5,7 +5,7 @@
* ReactOS MSVCRT.DLL Compatibility Library * ReactOS MSVCRT.DLL Compatibility Library
*/ */
#include "precomp.h" #include <precomp.h>
#include <internal/tls.h> #include <internal/tls.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#define NDEBUG #define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <stdlib.h> #include <stdlib.h>
#include <internal/tls.h> #include <internal/tls.h>
#include <internal/rterror.h> #include <internal/rterror.h>

View file

@ -8,7 +8,7 @@
* 04/03/99: Created * 04/03/99: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -9,7 +9,7 @@
* 04/03/99: Created * 04/03/99: Created
*/ */
#include "precomp.h" #include <precomp.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <process.h> #include <process.h>

View file

@ -8,7 +8,7 @@
* 04/03/99: Created * 04/03/99: Created
*/ */
#include "precomp.h" #include <precomp.h>
/* /*
* @implemented * @implemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <process.h> #include <process.h>
#include <tchar.h> #include <tchar.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <process.h> #include <process.h>
/* /*

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#if 0 #if 0
/* /*

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <process.h> #include <process.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
/* /*
* @unimplemented * @unimplemented

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdlib.h>

View file

@ -1,5 +1,5 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
char __validfp (FILE *f) char __validfp (FILE *f)
{ {

View file

@ -1,5 +1,5 @@
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
#ifdef clearerr #ifdef clearerr
#undef clearerr #undef clearerr

View file

@ -1,5 +1,5 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
#include <sys/stat.h> #include <sys/stat.h>

View file

@ -1,4 +1,4 @@
#include "precomp.h" #include <precomp.h>
#include <tchar.h> #include <tchar.h>

View file

@ -1,5 +1,5 @@
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include "precomp.h" #include <precomp.h>
#ifdef feof #ifdef feof
#undef feof #undef feof

Some files were not shown because too many files have changed in this diff Show more