mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
hack into private crt headers
svn path=/trunk/; revision=13611
This commit is contained in:
parent
d57dd016c4
commit
8bab7189cb
4 changed files with 10 additions and 8 deletions
|
@ -21,13 +21,14 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
#include <msvcrt/internal/tls.h>
|
#include <stdio.h>
|
||||||
|
#include <internal/tls.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <msvcrt/wine/msvcrt.h>
|
#include <internal/wine/msvcrt.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <msvcrt/msvcrtdbg.h>
|
#include <internal/msvcrtdbg.h>
|
||||||
|
|
||||||
|
|
||||||
/* EXTERNAL PROTOTYPES ********************************************************/
|
/* EXTERNAL PROTOTYPES ********************************************************/
|
||||||
|
|
|
@ -21,7 +21,7 @@ TARGET_SDKLIBS = crt.a string.a kernel32.a ntdll.a wine.a
|
||||||
|
|
||||||
TARGET_GCCLIBS = gcc
|
TARGET_GCCLIBS = gcc
|
||||||
|
|
||||||
TARGET_CFLAGS = -D__USE_W32API -Wall -Werror
|
TARGET_CFLAGS = -D__USE_W32API -Wall -Werror -I../crt/include
|
||||||
|
|
||||||
# require os code to explicitly request A/W version of structs/functions
|
# require os code to explicitly request A/W version of structs/functions
|
||||||
TARGET_CFLAGS += \
|
TARGET_CFLAGS += \
|
||||||
|
|
|
@ -21,7 +21,7 @@ TARGET_SDKLIBS = crt.a string.a kernel32.a ntdll.a wine.a
|
||||||
|
|
||||||
TARGET_GCCLIBS = gcc
|
TARGET_GCCLIBS = gcc
|
||||||
|
|
||||||
TARGET_CFLAGS = -D__USE_W32API -D_MSVCRT_LIB_ -Wall -Werror
|
TARGET_CFLAGS = -D__USE_W32API -D_MSVCRT_LIB_ -Wall -Werror -I../crt/include
|
||||||
|
|
||||||
# require os code to explicitly request A/W version of structs/functions
|
# require os code to explicitly request A/W version of structs/functions
|
||||||
TARGET_CFLAGS += \
|
TARGET_CFLAGS += \
|
||||||
|
|
|
@ -21,12 +21,13 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
#include <msvcrt/internal/tls.h>
|
#include <stdio.h>
|
||||||
|
#include <internal/tls.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <msvcrt/wine/msvcrt.h>
|
#include <internal/wine/msvcrt.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <msvcrt/msvcrtdbg.h>
|
#include <internal/msvcrtdbg.h>
|
||||||
|
|
||||||
|
|
||||||
/* EXTERNAL PROTOTYPES ********************************************************/
|
/* EXTERNAL PROTOTYPES ********************************************************/
|
||||||
|
|
Loading…
Reference in a new issue