2 * Copyright 2001 Jon Griffiths
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef __WINE_MSVCRT_H
20 #define __WINE_MSVCRT_H
31 #include "msvcrt/string.h"
32 #include "msvcrt/eh.h"
35 extern DWORD MSVCRT_tls_index;
37 typedef struct __MSVCRT_thread_data
40 unsigned long doserrno;
41 terminate_function terminate_handler;
42 unexpected_function unexpected_handler;
43 _se_translator_function se_translator;
44 EXCEPTION_RECORD *exc_record;
47 extern MSVCRT_thread_data *msvcrt_get_thread_data(void);
49 extern int MSVCRT_current_lc_all_cp;
52 void MSVCRT__set_errno(int);
53 char* msvcrt_strndup(const char*,unsigned int);
54 MSVCRT_wchar_t *msvcrt_wstrndup(const MSVCRT_wchar_t*, unsigned int);
56 void MSVCRT__amsg_exit(int errnum);
58 extern char **MSVCRT__environ;
59 extern MSVCRT_wchar_t **MSVCRT__wenviron;
61 extern char ** msvcrt_SnapshotOfEnvironmentA(char **);
62 extern MSVCRT_wchar_t ** msvcrt_SnapshotOfEnvironmentW(MSVCRT_wchar_t **);
64 /* FIXME: This should be declared in new.h but it's not an extern "C" so
65 * it would not be much use anyway. Even for Winelib applications.
67 int MSVCRT__set_new_mode(int mode);
69 /* Setup and teardown multi threaded locks */
70 extern void msvcrt_init_mt_locks(void);
71 extern void msvcrt_free_mt_locks(void);
73 extern void msvcrt_init_io(void);
74 extern void msvcrt_free_io(void);
75 extern void msvcrt_init_console(void);
76 extern void msvcrt_free_console(void);
77 extern void msvcrt_init_args(void);
78 extern void msvcrt_free_args(void);
79 extern void msvcrt_init_vtables(void);
81 /* run-time error codes */
87 #define _RT_EXECFORM 6
89 #define _RT_SPACEARG 8
90 #define _RT_SPACEENV 9
99 #define _RT_OPENCON 19
101 #define _RT_NOMAIN 21
102 #define _RT_NONCONT 22
103 #define _RT_INVALDISP 23
104 #define _RT_ONEXIT 24
105 #define _RT_PUREVIRT 25
106 #define _RT_STDIOINIT 26
107 #define _RT_LOWIOINIT 27
108 #define _RT_HEAPINIT 28
109 #define _RT_DOMAIN 120
111 #define _RT_TLOSS 122
113 #define _RT_BANNER 255
115 #endif /* __WINE_MSVCRT_H */