2002-09-30 Casper S. Hornstrup <chorns@users.sourceforge.net>

* lib/user32/misc/desktop.c (string.h): Include.
	* lib/user32/misc/resources.c: Ditto.
	* lib/user32/misc/winhelp.c: Ditto.
	* lib/user32/windows/accel.c: Ditto.
	* lib/user32/windows/bitmap.c: Ditto.
	* subsys/win32k/freetype/ctype.c: Undefine __MSVCRT__ and _pctype to not
	have mingw runtime import _pctype.

svn path=/trunk/; revision=3588
This commit is contained in:
Casper Hornstrup 2002-09-30 21:21:38 +00:00
parent beb75552bb
commit 7b7130b9ca
7 changed files with 23 additions and 7 deletions

View file

@ -1,3 +1,13 @@
2002-09-30 Casper S. Hornstrup <chorns@users.sourceforge.net>
* lib/user32/misc/desktop.c (string.h): Include.
* lib/user32/misc/resources.c: Ditto.
* lib/user32/misc/winhelp.c: Ditto.
* lib/user32/windows/accel.c: Ditto.
* lib/user32/windows/bitmap.c: Ditto.
* subsys/win32k/freetype/ctype.c: Undefine __MSVCRT__ and _pctype to not
have mingw runtime import _pctype.
2002-09-30 Casper S. Hornstrup <chorns@users.sourceforge.net>
* ntoskrnl/cc/view.c (alloca): Prototype.

View file

@ -1,4 +1,4 @@
/* $Id: desktop.c,v 1.8 2002/09/20 21:55:50 jfilby Exp $
/* $Id: desktop.c,v 1.9 2002/09/30 21:21:38 chorns Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
@ -8,6 +8,7 @@
* UPDATE HISTORY:
* 06-06-2001 CSH Created
*/
#include <string.h>
#include <windows.h>
#include <user32.h>
#include <debug.h>

View file

@ -1,4 +1,4 @@
#include <string.h>
#include <windows.h>
#include <ddk/ntddk.h>
#include <kernel32/error.h>

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: winhelp.c,v 1.2 2002/09/17 23:46:23 dwelch Exp $
/* $Id: winhelp.c,v 1.3 2002/09/30 21:21:38 chorns Exp $
*
* PROJECT: ReactOS user32.dll
* FILE: lib/user32/misc/winhelp.c
@ -28,6 +28,7 @@
/* INCLUDES ******************************************************************/
#include <string.h>
#include <windows.h>
#include <user32.h>
#include <debug.h>

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: accel.c,v 1.4 2002/09/17 23:46:23 dwelch Exp $
/* $Id: accel.c,v 1.5 2002/09/30 21:21:38 chorns Exp $
*
* PROJECT: ReactOS user32.dll
* FILE: lib/user32/windows/input.c
@ -27,7 +27,7 @@
*/
/* INCLUDES ******************************************************************/
#include <string.h>
#include <windows.h>
#include <user32.h>
#include <debug.h>

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: bitmap.c,v 1.5 2002/09/17 23:46:23 dwelch Exp $
/* $Id: bitmap.c,v 1.6 2002/09/30 21:21:38 chorns Exp $
*
* PROJECT: ReactOS user32.dll
* FILE: lib/user32/windows/input.c
@ -28,6 +28,7 @@
/* INCLUDES ******************************************************************/
#include <string.h>
#include <windows.h>
#include <user32.h>
#include <debug.h>

View file

@ -1,4 +1,4 @@
/* $Id: ctype.c,v 1.1 2001/05/02 12:21:26 jfilby Exp $
/* $Id: ctype.c,v 1.2 2002/09/30 21:21:38 chorns Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -11,9 +11,12 @@
* all functions to use ctype table
*/
#undef __MSVCRT__
#include <ctype.h>
#include <string.h>
#undef _pctype
#define upalpha ('A' - 'a')