The 'dword' values should be stored as big endian values.
[wine/multimedia.git] / include / msvcrt / stddef.h
bloba3bef9e34a9136be8782bf15f5693cacf36dd429
1 /*
2 * Time definitions
4 * Copyright 2000 Francois Gouget.
5 */
6 #ifndef __WINE_STDDEF_H
7 #define __WINE_STDDEF_H
8 #define __WINE_USE_MSVCRT
10 #include "winnt.h"
13 typedef int ptrdiff_t;
15 #ifndef MSVCRT_SIZE_T_DEFINED
16 typedef unsigned int MSVCRT(size_t);
17 #define MSVCRT_SIZE_T_DEFINED
18 #endif
20 /* Best to leave this one alone: wchar_t */
23 #define offsetof(s,m) (size_t)&(((s*)NULL)->m)
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
30 unsigned long __threadid();
31 unsigned long __threadhandle();
32 #define _threadid (__threadid())
34 #ifdef __cplusplus
36 #endif
38 #endif /* __WINE_STDDEF_H */