kernel32: Don't store the current codepage in the thread data.
[wine] / dlls / kernel32 / kernel_private.h
1 /*
2  * Kernel32 undocumented and private functions definition
3  *
4  * Copyright 2003 Eric Pouech
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #ifndef __WINE_KERNEL_PRIVATE_H
22 #define __WINE_KERNEL_PRIVATE_H
23
24 #include "wine/server.h"
25
26 struct tagSYSLEVEL;
27
28 struct kernel_thread_data
29 {
30     WORD                stack_sel;      /* 16-bit stack selector */
31     WORD                htask16;        /* Win16 task handle */
32     DWORD               sys_count[4];   /* syslevel mutex entry counters */
33     struct tagSYSLEVEL *sys_mutex[4];   /* syslevel mutex pointers */
34     void               *pad[45];        /* change this if you add fields! */
35 };
36
37 static inline struct kernel_thread_data *kernel_get_thread_data(void)
38 {
39     return (struct kernel_thread_data *)NtCurrentTeb()->SystemReserved1;
40 }
41
42 HANDLE  WINAPI OpenConsoleW(LPCWSTR, DWORD, BOOL, DWORD);
43 BOOL    WINAPI VerifyConsoleIoHandle(HANDLE);
44 HANDLE  WINAPI DuplicateConsoleHandle(HANDLE, DWORD, BOOL, DWORD);
45 BOOL    WINAPI CloseConsoleHandle(HANDLE handle);
46 HANDLE  WINAPI GetConsoleInputWaitHandle(void);
47
48 static inline BOOL is_console_handle(HANDLE h)
49 {
50     return h != INVALID_HANDLE_VALUE && ((UINT_PTR)h & 3) == 3;
51 }
52
53 /* map a real wineserver handle onto a kernel32 console handle */
54 static inline HANDLE console_handle_map(HANDLE h)
55 {
56     return h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE;
57 }
58
59 /* map a kernel32 console handle onto a real wineserver handle */
60 static inline obj_handle_t console_handle_unmap(HANDLE h)
61 {
62     return wine_server_obj_handle( h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE );
63 }
64
65 extern HMODULE kernel32_handle;
66
67 extern const WCHAR *DIR_Windows;
68 extern const WCHAR *DIR_System;
69 extern const WCHAR *DIR_SysWow64;
70
71 extern VOID SYSLEVEL_CheckNotLevel( INT level );
72
73 extern void FILE_SetDosError(void);
74 extern WCHAR *FILE_name_AtoW( LPCSTR name, BOOL alloc );
75 extern DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen );
76
77 /* return values for MODULE_GetBinaryType */
78 enum binary_type
79 {
80     BINARY_UNKNOWN = 0,
81     BINARY_PE,
82     BINARY_WIN16,
83     BINARY_OS216,
84     BINARY_DOS,
85     BINARY_UNIX_EXE,
86     BINARY_UNIX_LIB
87 };
88
89 #define BINARY_FLAG_DLL   0x01
90 #define BINARY_FLAG_64BIT 0x02
91
92 struct binary_info
93 {
94     enum binary_type type;
95     DWORD            flags;
96     void            *res_start;
97     void            *res_end;
98 };
99
100 /* module.c */
101 extern WCHAR *MODULE_get_dll_load_path( LPCWSTR module );
102 extern void MODULE_get_binary_info( HANDLE hfile, struct binary_info *info );
103
104 extern BOOL NLS_IsUnicodeOnlyLcid(LCID);
105
106 /* vxd.c */
107 typedef BOOL (WINAPI *DeviceIoProc)(DWORD, LPVOID, DWORD, LPVOID, DWORD, LPDWORD, LPOVERLAPPED);
108 extern DeviceIoProc VXD_get_proc( HANDLE handle );
109 extern HANDLE VXD_Open( LPCWSTR filename, DWORD access, LPSECURITY_ATTRIBUTES sa );
110
111 /* environ.c */
112 extern void ENV_CopyStartupInformation(void);
113
114 /* computername.c */
115 extern void COMPUTERNAME_Init(void);
116
117 /* locale.c */
118 extern void LOCALE_Init(void);
119 extern void LOCALE_InitRegistry(void);
120
121 /* oldconfig.c */
122 extern void convert_old_config(void);
123
124 /* returns directory handle for named objects */
125 extern HANDLE get_BaseNamedObjects_handle(void);
126
127 #endif