/*************************************************************************** * FILE: stddef.h/cstddef (Standard definitions) * * ========================================================================= * * Open Watcom Project * * Copyright (c) 2002-2010 Open Watcom Contributors. All Rights Reserved. * Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. * * This file is automatically generated. Do not edit directly. * * ========================================================================= * * Description: This header is part of the C/C++ standard library. It * introduces certain commonly needed type names and * supplies the offsetof macro. ***************************************************************************/ #ifndef _CSTDDEF_INCLUDED #define _CSTDDEF_INCLUDED #ifndef _ENABLE_AUTODEPEND #pragma read_only_file; #endif #ifndef __cplusplus #error This header file requires C++ #endif #ifndef _COMDEF_H_INCLUDED #include <_comdef.h> #endif extern "C" { #ifndef _STDSIZE_T_DEFINED #define _STDSIZE_T_DEFINED namespace std { typedef unsigned size_t; } typedef std::size_t _w_size_t; #endif #ifndef NULL #ifdef __cplusplus #if !defined(_M_I86) || defined(__SMALL__) || defined(__MEDIUM__) #define NULL 0 #else #define NULL 0L #endif #else #define NULL ((void *)0) #endif #endif #ifndef _STDPTRDIFF_T_DEFINED #define _STDPTRDIFF_T_DEFINED namespace std { #ifdef __HUGE__ typedef long ptrdiff_t; #else typedef int ptrdiff_t; #endif } #endif #define offsetof(__typ,__id) __offsetof(__typ,__id) #if !defined(NO_EXT_KEYS) /* extensions enabled */ #if defined(_M_I86) _WCRTDATA extern int _WCFAR *_threadid; /* pointer to thread id */ #else _WCRTLINK extern int *__threadid(void); /* pointer to thread id */ #define _threadid (__threadid()) #if defined(__NT__) _WCRTLINK extern unsigned long __threadhandle( void ); #endif #endif #endif /* extensions enabled */ } /* extern "C" */ #endif