crypt32: Trace enhanced key usage extension.
[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     UINT                code_page;      /* thread code page */
31     WORD                stack_sel;      /* 16-bit stack selector */
32     WORD                htask16;        /* Win16 task handle */
33     DWORD               sys_count[4];   /* syslevel mutex entry counters */
34     struct tagSYSLEVEL *sys_mutex[4];   /* syslevel mutex pointers */
35     void               *pad[44];        /* change this if you add fields! */
36 };
37
38 static inline struct kernel_thread_data *kernel_get_thread_data(void)
39 {
40     return (struct kernel_thread_data *)NtCurrentTeb()->SystemReserved1;
41 }
42
43 HANDLE  WINAPI OpenConsoleW(LPCWSTR, DWORD, BOOL, DWORD);
44 BOOL    WINAPI VerifyConsoleIoHandle(HANDLE);
45 HANDLE  WINAPI DuplicateConsoleHandle(HANDLE, DWORD, BOOL, DWORD);
46 BOOL    WINAPI CloseConsoleHandle(HANDLE handle);
47 HANDLE  WINAPI GetConsoleInputWaitHandle(void);
48
49 static inline BOOL is_console_handle(HANDLE h)
50 {
51     return h != INVALID_HANDLE_VALUE && ((UINT_PTR)h & 3) == 3;
52 }
53
54 /* map a real wineserver handle onto a kernel32 console handle */
55 static inline HANDLE console_handle_map(HANDLE h)
56 {
57     return h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE;
58 }
59
60 /* map a kernel32 console handle onto a real wineserver handle */
61 static inline obj_handle_t console_handle_unmap(HANDLE h)
62 {
63     return wine_server_obj_handle( h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE );
64 }
65
66 extern HMODULE kernel32_handle;
67
68 extern const WCHAR *DIR_Windows;
69 extern const WCHAR *DIR_System;
70 extern const WCHAR *DIR_SysWow64;
71
72 extern VOID SYSLEVEL_CheckNotLevel( INT level );
73
74 extern void FILE_SetDosError(void);
75 extern WCHAR *FILE_name_AtoW( LPCSTR name, BOOL alloc );
76 extern DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen );
77
78 /* return values for MODULE_GetBinaryType */
79 enum binary_type
80 {
81     BINARY_UNKNOWN = 0,
82     BINARY_PE,
83     BINARY_WIN16,
84     BINARY_OS216,
85     BINARY_DOS,
86     BINARY_UNIX_EXE,
87     BINARY_UNIX_LIB
88 };
89
90 #define BINARY_FLAG_DLL   0x01
91 #define BINARY_FLAG_64BIT 0x02
92
93 struct binary_info
94 {
95     enum binary_type type;
96     DWORD            flags;
97     void            *res_start;
98     void            *res_end;
99 };
100
101 /* module.c */
102 extern WCHAR *MODULE_get_dll_load_path( LPCWSTR module );
103 extern void MODULE_get_binary_info( HANDLE hfile, struct binary_info *info );
104
105 extern BOOL NLS_IsUnicodeOnlyLcid(LCID);
106
107 /* vxd.c */
108 typedef BOOL (WINAPI *DeviceIoProc)(DWORD, LPVOID, DWORD, LPVOID, DWORD, LPDWORD, LPOVERLAPPED);
109 extern DeviceIoProc VXD_get_proc( HANDLE handle );
110 extern HANDLE VXD_Open( LPCWSTR filename, DWORD access, LPSECURITY_ATTRIBUTES sa );
111
112 /* environ.c */
113 extern void ENV_CopyStartupInformation(void);
114
115 /* computername.c */
116 extern void COMPUTERNAME_Init(void);
117
118 /* locale.c */
119 extern void LOCALE_Init(void);
120 extern void LOCALE_InitRegistry(void);
121
122 /* oldconfig.c */
123 extern void convert_old_config(void);
124
125 /* returns directory handle for named objects */
126 extern HANDLE get_BaseNamedObjects_handle(void);
127
128 #endif