[SDK] One step further towards ReactOS source code tree restructure: the sdk folder that groups includes, libraries and tools. CORE-9111

svn path=/trunk/; revision=71184
This commit is contained in:
Amine Khaldi 2016-04-20 12:36:25 +00:00
parent e85488750c
commit 08a0346e9f
5109 changed files with 499 additions and 773 deletions

View file

@ -0,0 +1,30 @@
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within this package.
*/
#ifndef _TIMEB_H_S
#define _TIMEB_H_S
#include <sys/timeb.h>
#ifdef __cplusplus
extern "C" {
#endif
#if defined(MINGW_HAS_SECURE_API)
_CRTIMP errno_t __cdecl _ftime32_s(_Out_ struct __timeb32 *_Time);
_CRTIMP errno_t __cdecl _ftime64_s(_Out_ struct __timeb64 *_Time);
#ifndef _USE_32BIT_TIME_T
#define _ftime_s _ftime64_s
#endif
#endif
#ifdef __cplusplus
}
#endif
#endif