mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 04:33:55 +00:00
[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:
parent
e85488750c
commit
08a0346e9f
5109 changed files with 499 additions and 773 deletions
30
reactos/sdk/include/crt/sec_api/sys/timeb_s.h
Normal file
30
reactos/sdk/include/crt/sec_api/sys/timeb_s.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue