Slightly improve keyboard tracking in combobox.
[wine.git] / include / msvcrt / stddef.h
blobe8aee35adca263f9c1914d6b0c7a4ddf7b28730b
1 /*
2 * Time definitions
4 * Copyright 2000 Francois Gouget.
5 */
6 #ifndef __WINE_STDDEF_H
7 #define __WINE_STDDEF_H
9 #include "winnt.h"
12 typedef int ptrdiff_t;
14 #ifndef MSVCRT_SIZE_T_DEFINED
15 typedef unsigned int MSVCRT(size_t);
16 #define MSVCRT_SIZE_T_DEFINED
17 #endif
19 /* Best to leave this one alone: wchar_t */
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
26 unsigned long __threadid();
27 unsigned long __threadhandle();
28 #define _threadid (__threadid())
30 #ifdef __cplusplus
32 #endif
34 #endif /* __WINE_STDDEF_H */