Added __WINE_USE_MSVCRT.

This commit is contained in:
Francois Gouget 2001-10-22 18:59:23 +00:00 committed by Alexandre Julliard
parent bfa70fe642
commit a45907c4c0
23 changed files with 26 additions and 1 deletions

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_CONIO_H
#define __WINE_CONIO_H
#define __WINE_USE_MSVCRT
#ifdef __cplusplus

View file

@ -5,12 +5,13 @@
*/
#ifndef __WINE_CRTDBG_H_
#define __WINE_CRTDBG_H_
#define __WINE_USE_MSVCRT
/* The debug API is not implemented in Winelib.
* Redirect everything to the regular APIs.
*/
#define _CRT_WARN 0
#define _CRT_ERROR 1
#define _CRT_ASSERT 2

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_CTYPE_H
#define __WINE_CTYPE_H
#define __WINE_USE_MSVCRT
#include "msvcrt/wctype.h"

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_DIRECT_H
#define __WINE_DIRECT_H
#define __WINE_USE_MSVCRT
#include "winnt.h"
#include "msvcrt/dos.h" /* For _getdiskfree & co */

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_DOS_H
#define __WINE_DOS_H
#define __WINE_USE_MSVCRT
/* The following are also defined in io.h */

View file

@ -5,6 +5,7 @@
*/
#ifndef __WINE_EH_H
#define __WINE_EH_H
#define __WINE_USE_MSVCRT
#if !defined(__cplusplus) && !defined(__WINE__)
#error "eh.h is meant only for C++ applications"

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_FCNTL_H
#define __WINE_FCNTL_H
#define __WINE_USE_MSVCRT
#define _O_RDONLY 0

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_IO_H
#define __WINE_IO_H
#define __WINE_USE_MSVCRT
#include "msvcrt/stdio.h" /* For FILENAME_MAX */
#include "msvcrt/sys/types.h" /* For time_t */

View file

@ -5,6 +5,7 @@
*/
#ifndef __WINE_LOCALE_H
#define __WINE_LOCALE_H
#define __WINE_USE_MSVCRT
#include "winnt.h"

View file

@ -5,6 +5,7 @@
*/
#ifndef __WINE_MALLOC_H
#define __WINE_MALLOC_H
#define __WINE_USE_MSVCRT
#ifdef USE_MSVCRT_PREFIX
#define MSVCRT(x) MSVCRT_##x

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_PROCESS_H
#define __WINE_PROCESS_H
#define __WINE_USE_MSVCRT
#include "winnt.h"

View file

@ -5,6 +5,7 @@
*/
#ifndef __WINE_SEARCH_H
#define __WINE_SEARCH_H
#define __WINE_USE_MSVCRT
#ifdef USE_MSVCRT_PREFIX
#define MSVCRT(x) MSVCRT_##x

View file

@ -5,6 +5,7 @@
*/
#ifndef __WINE_STDDEF_H
#define __WINE_STDDEF_H
#define __WINE_USE_MSVCRT
#include "winnt.h"

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_STDIO_H
#define __WINE_STDIO_H
#define __WINE_USE_MSVCRT
#ifndef RC_INVOKED
#include <stdarg.h>

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_STDLIB_H
#define __WINE_STDLIB_H
#define __WINE_USE_MSVCRT
#include "winnt.h"
#include "msvcrt/malloc.h" /* For size_t, malloc & co */

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_STRING_H
#define __WINE_STRING_H
#define __WINE_USE_MSVCRT
#include "winnt.h"

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_SYS_STAT_H
#define __WINE_SYS_STAT_H
#define __WINE_USE_MSVCRT
#include "msvcrt/sys/types.h"

View file

@ -5,6 +5,7 @@
*/
#ifndef __WINE_SYS_TIMEB_H
#define __WINE_SYS_TIMEB_H
#define __WINE_USE_MSVCRT
#include "msvcrt/sys/types.h" /* For time_t */

View file

@ -5,6 +5,8 @@
*/
#ifndef __WINE_SYS_TYPES_H
#define __WINE_SYS_TYPES_H
#define __WINE_USE_MSVCRT
#ifdef USE_MSVCRT_PREFIX
#define MSVCRT(x) MSVCRT_##x

View file

@ -5,6 +5,7 @@
*/
#ifndef __WINE_SYS_UTIME_H
#define __WINE_SYS_UTIME_H
#define __WINE_USE_MSVCRT
#include "winnt.h"
#include "msvcrt/sys/types.h" /* For time_t */

View file

@ -5,6 +5,7 @@
*/
#ifndef __WINE_TIME_H
#define __WINE_TIME_H
#define __WINE_USE_MSVCRT
#include "winnt.h"
#include "msvcrt/sys/types.h" /* For time_t */

View file

@ -7,6 +7,7 @@
*/
#ifndef __WINE_WCHAR_H
#define __WINE_WCHAR_H
#define __WINE_USE_MSVCRT
#include "msvcrt/io.h"
#include "msvcrt/locale.h"

View file

@ -5,6 +5,8 @@
*/
#ifndef __WINE_WCTYPE_H
#define __WINE_WCTYPE_H
#define __WINE_USE_MSVCRT
/* FIXME: winnt.h includes 'ctype.h' which includes 'wctype.h'. So we get
* there but WCHAR is not defined.