mirror of
https://github.com/reactos/reactos.git
synced 2025-07-29 08:21:38 +00:00
[CRT] Introduce corecrt.h
Include this instead of crtdefs.h. This is for compatibility with MS headers.
This commit is contained in:
parent
4e3c0529cf
commit
6f6b831722
41 changed files with 65 additions and 52 deletions
25
sdk/include/crt/corecrt.h
Normal file
25
sdk/include/crt/corecrt.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <crtdefs.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef _CRTRESTRICT
|
||||
#define _CRTRESTRICT
|
||||
#endif
|
||||
|
||||
#ifndef DEFINED_localeinfo_struct
|
||||
typedef struct localeinfo_struct
|
||||
{
|
||||
pthreadlocinfo locinfo;
|
||||
pthreadmbcinfo mbcinfo;
|
||||
} _locale_tstruct, *_locale_t;
|
||||
#define DEFINED_localeinfo_struct 1
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue