- Made sure that the files that contains the declarations
[wine/wine-kai.git] / dlls / msvcrt / msvcrt.h
blob70ff5f5ba7b982ca82bf2847d31b21f23ef2b73a
1 #ifndef __WINE_MSVCRT_H
2 #define __WINE_MSVCRT_H
4 #include "config.h"
5 #include "windef.h"
6 #include "debugtools.h"
7 #include "winbase.h"
8 #include "winerror.h"
9 #include "winnls.h"
10 #include <stdarg.h>
11 #include <ctype.h>
12 #include <string.h>
14 /* TLS data */
15 extern DWORD MSVCRT_tls_index;
17 typedef struct __MSVCRT_thread_data
19 int errno;
20 unsigned long doserrno;
21 } MSVCRT_thread_data;
23 #define GET_THREAD_DATA(x) \
24 x = TlsGetValue(MSVCRT_tls_index)
25 #define GET_THREAD_VAR(x) \
26 ((MSVCRT_thread_data*)TlsGetValue(MSVCRT_tls_index))->x
27 #define GET_THREAD_VAR_PTR(x) \
28 (&((MSVCRT_thread_data*)TlsGetValue(MSVCRT_tls_index))->x)
29 #define SET_THREAD_VAR(x,y) \
30 ((MSVCRT_thread_data*)TlsGetValue(MSVCRT_tls_index))->x = y
32 extern int MSVCRT_current_lc_all_cp;
34 void _purecall(void);
35 void MSVCRT__set_errno(int);
36 char* msvcrt_strndup(const char*,unsigned int);
37 LPWSTR msvcrt_wstrndup(LPCWSTR, unsigned int);
39 /* FIXME: This should be declared in new.h but it's not an extern "C" so
40 * it would not be much use anyway. Even for Winelib applications.
42 int MSVCRT__set_new_mode(int mode);
44 #endif /* __WINE_MSVCRT_H */