2001-04-11 01:21:43 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2000 Francois Gouget.
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2001-04-11 01:21:43 +02:00
|
|
|
*/
|
|
|
|
#ifndef __WINE_STDDEF_H
|
|
|
|
#define __WINE_STDDEF_H
|
2006-10-16 21:29:23 +02:00
|
|
|
|
2008-12-11 22:37:34 +01:00
|
|
|
#include <crtdefs.h>
|
2001-04-11 01:21:43 +02:00
|
|
|
|
2002-12-18 21:17:20 +01:00
|
|
|
#ifndef NULL
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define NULL 0
|
|
|
|
#else
|
|
|
|
#define NULL ((void *)0)
|
|
|
|
#endif
|
2002-11-30 20:14:23 +01:00
|
|
|
#endif
|
2001-04-11 01:21:43 +02:00
|
|
|
|
2005-11-03 14:17:51 +01:00
|
|
|
#ifdef _WIN64
|
|
|
|
#define offsetof(s,m) (size_t)((ptrdiff_t)&(((s*)NULL)->m))
|
|
|
|
#else
|
2001-04-23 20:22:05 +02:00
|
|
|
#define offsetof(s,m) (size_t)&(((s*)NULL)->m)
|
2005-11-03 14:17:51 +01:00
|
|
|
#endif
|
2001-04-23 20:22:05 +02:00
|
|
|
|
|
|
|
|
2001-04-11 01:21:43 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-05-23 11:38:59 +02:00
|
|
|
__msvcrt_ulong __cdecl __threadid(void);
|
|
|
|
__msvcrt_ulong __cdecl __threadhandle(void);
|
2008-12-17 14:45:18 +01:00
|
|
|
#define _threadid (__threadid())
|
2001-04-11 01:21:43 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __WINE_STDDEF_H */
|