usp10: Add Ethiopic script.
[wine.git] / dlls / msvcp90 / msvcp90.h
blobed66d23725b1d8fc8261b758c6106c83f101d1ce
1 /*
2 * Copyright 2010 Piotr Caban for CodeWeavers
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "stdlib.h"
20 #include "windef.h"
22 typedef unsigned char MSVCP_bool;
23 typedef SIZE_T MSVCP_size_t;
24 typedef SIZE_T streamoff;
25 typedef SIZE_T streamsize;
27 void __cdecl _invalid_parameter(const wchar_t*, const wchar_t*,
28 const wchar_t*, unsigned int, uintptr_t);
30 extern void* (__cdecl *MSVCRT_operator_new)(MSVCP_size_t);
31 extern void (__cdecl *MSVCRT_operator_delete)(void*);
32 extern void* (__cdecl *MSVCRT_set_new_handler)(void*);
34 /* Copied from dlls/msvcrt/cpp.c */
35 #ifdef __i386__ /* thiscall functions are i386-specific */
37 #define THISCALL(func) __thiscall_ ## func
38 #define THISCALL_NAME(func) __ASM_NAME("__thiscall_" #func)
39 #define __thiscall __stdcall
40 #define DEFINE_THISCALL_WRAPPER(func,args) \
41 extern void THISCALL(func)(void); \
42 __ASM_GLOBAL_FUNC(__thiscall_ ## func, \
43 "popl %eax\n\t" \
44 "pushl %ecx\n\t" \
45 "pushl %eax\n\t" \
46 "jmp " __ASM_NAME(#func) __ASM_STDCALL(args) )
48 #define DEFINE_THISCALL_WRAPPER_RETPTR(func,args) \
49 extern void THISCALL(func)(void); \
50 __ASM_GLOBAL_FUNC(__thiscall_ ## func, \
51 "popl %eax\n\t" \
52 "popl %edx\n\t" \
53 "pushl %ecx\n\t" \
54 "pushl %edx\n\t" \
55 "pushl %eax\n\t" \
56 "jmp " __ASM_NAME(#func) __ASM_STDCALL(args) )
57 #else /* __i386__ */
59 #define THISCALL(func) func
60 #define THISCALL_NAME(func) __ASM_NAME(#func)
61 #define __thiscall __cdecl
62 #define DEFINE_THISCALL_WRAPPER(func,args) /* nothing */
63 #define DEFINE_THISCALL_WRAPPER_RETPTR(func,args) /* nothing */
65 #endif /* __i386__ */
67 #ifdef _WIN64
69 #define __ASM_VTABLE(name,funcs) \
70 __asm__(".data\n" \
71 "\t.align 8\n" \
72 "\t.quad " __ASM_NAME(#name "_rtti") "\n" \
73 "\t.globl " __ASM_NAME("MSVCP_" #name "_vtable") "\n" \
74 __ASM_NAME("MSVCP_" #name "_vtable") ":\n" \
75 "\t.quad " THISCALL_NAME(MSVCP_ ## name ## _vector_dtor) "\n" \
76 funcs "\n\t.text")
78 #else
80 #define __ASM_VTABLE(name,funcs) \
81 __asm__(".data\n" \
82 "\t.align 4\n" \
83 "\t.long " __ASM_NAME(#name "_rtti") "\n" \
84 "\t.globl " __ASM_NAME("MSVCP_" #name "_vtable") "\n" \
85 __ASM_NAME("MSVCP_" #name "_vtable") ":\n" \
86 "\t.long " THISCALL_NAME(MSVCP_ ## name ## _vector_dtor) "\n" \
87 funcs "\n\t.text")
89 #endif /* _WIN64 */
91 /* exception object */
92 typedef void (*vtable_ptr)(void);
93 typedef struct __exception
95 const vtable_ptr *vtable;
96 char *name; /* Name of this exception, always a new copy for each object */
97 int do_free; /* Whether to free 'name' in our dtor */
98 } exception;
100 /* Internal: throws selected exception */
101 typedef enum __exception_type {
102 EXCEPTION,
103 EXCEPTION_BAD_ALLOC,
104 EXCEPTION_LOGIC_ERROR,
105 EXCEPTION_LENGTH_ERROR,
106 EXCEPTION_OUT_OF_RANGE,
107 EXCEPTION_INVALID_ARGUMENT,
108 EXCEPTION_RUNTIME_ERROR
109 } exception_type;
110 void throw_exception(exception_type, const char *);
111 void set_exception_vtable(void);
113 /* rtti */
114 typedef struct __type_info
116 const vtable_ptr *vtable;
117 char *name; /* Unmangled name, allocated lazily */
118 char mangled[64]; /* Variable length, but we declare it large enough for static RTTI */
119 } type_info;
121 /* offsets for computing the this pointer */
122 typedef struct
124 int this_offset; /* offset of base class this pointer from start of object */
125 int vbase_descr; /* offset of virtual base class descriptor */
126 int vbase_offset; /* offset of this pointer offset in virtual base class descriptor */
127 } this_ptr_offsets;
129 typedef struct _rtti_base_descriptor
131 const type_info *type_descriptor;
132 int num_base_classes;
133 this_ptr_offsets offsets; /* offsets for computing the this pointer */
134 unsigned int attributes;
135 } rtti_base_descriptor;
137 typedef struct _rtti_base_array
139 const rtti_base_descriptor *bases[4]; /* First element is the class itself */
140 } rtti_base_array;
142 typedef struct _rtti_object_hierarchy
144 unsigned int signature;
145 unsigned int attributes;
146 int array_len; /* Size of the array pointed to by 'base_classes' */
147 const rtti_base_array *base_classes;
148 } rtti_object_hierarchy;
150 typedef struct _rtti_object_locator
152 unsigned int signature;
153 int base_class_offset;
154 unsigned int flags;
155 const type_info *type_descriptor;
156 const rtti_object_hierarchy *type_hierarchy;
157 } rtti_object_locator;
159 /* basic_string<char, char_traits<char>, allocator<char>> */
160 #define BUF_SIZE_CHAR 16
161 typedef struct _basic_string_char
163 void *allocator;
164 union {
165 char buf[BUF_SIZE_CHAR];
166 char *ptr;
167 } data;
168 MSVCP_size_t size;
169 MSVCP_size_t res;
170 } basic_string_char;
172 basic_string_char* __stdcall MSVCP_basic_string_char_ctor_cstr(basic_string_char*, const char*);
173 basic_string_char* __stdcall MSVCP_basic_string_char_copy_ctor(basic_string_char*, const basic_string_char*);
174 void __stdcall MSVCP_basic_string_char_dtor(basic_string_char*);
175 const char* __stdcall MSVCP_basic_string_char_c_str(const basic_string_char*);
177 #define BUF_SIZE_WCHAR 8
178 typedef struct _basic_string_wchar
180 void *allocator;
181 union {
182 wchar_t buf[BUF_SIZE_WCHAR];
183 wchar_t *ptr;
184 } data;
185 MSVCP_size_t size;
186 MSVCP_size_t res;
187 } basic_string_wchar;
189 char* __stdcall MSVCP_allocator_char_allocate(void*, MSVCP_size_t);
190 void __stdcall MSVCP_allocator_char_deallocate(void*, char*, MSVCP_size_t);
191 MSVCP_size_t __stdcall MSVCP_allocator_char_max_size(void*);
192 wchar_t* __stdcall MSVCP_allocator_wchar_allocate(void*, MSVCP_size_t);
193 void __stdcall MSVCP_allocator_wchar_deallocate(void*, wchar_t*, MSVCP_size_t);
194 MSVCP_size_t __stdcall MSVCP_allocator_wchar_max_size(void*);
196 /* class locale */
197 typedef struct
199 struct _locale__Locimp *ptr;
200 } locale;
202 locale* __thiscall locale_ctor(locale*);
203 void __thiscall locale_dtor(locale*);
205 /* class _Lockit */
206 typedef struct {
207 int locktype;
208 } _Lockit;
210 #define _LOCK_LOCALE 0
211 #define _LOCK_MALLOC 1
212 #define _LOCK_STREAM 2
213 #define _LOCK_DEBUG 3
214 #define _MAX_LOCK 4
216 void init_lockit(void);
217 void free_lockit(void);
218 _Lockit* __thiscall _Lockit_ctor_locktype(_Lockit*, int);
219 void __thiscall _Lockit_dtor(_Lockit*);
221 /* class mutex */
222 typedef struct {
223 void *mutex;
224 } mutex;
226 mutex* __thiscall mutex_ctor(mutex*);
227 void __thiscall mutex_dtor(mutex*);
228 void __thiscall mutex_lock(mutex*);
229 void __thiscall mutex_unlock(mutex*);