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 HANDLE WINAPI OpenConsoleW(LPCWSTR, DWORD, BOOL, DWORD);
27 BOOL WINAPI VerifyConsoleIoHandle(HANDLE);
28 HANDLE WINAPI DuplicateConsoleHandle(HANDLE, DWORD, BOOL, DWORD);
29 BOOL WINAPI CloseConsoleHandle(HANDLE handle);
30 HANDLE WINAPI GetConsoleInputWaitHandle(void);
31
32 static inline BOOL is_console_handle(HANDLE h)
33 {
34 return h != INVALID_HANDLE_VALUE && ((UINT_PTR)h & 3) == 3;
35 }
36
37 /* map a real wineserver handle onto a kernel32 console handle */
38 static inline HANDLE console_handle_map(HANDLE h)
39 {
40 return h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE;
41 }
42
43 /* map a kernel32 console handle onto a real wineserver handle */
44 static inline obj_handle_t console_handle_unmap(HANDLE h)
45 {
46 return wine_server_obj_handle( h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE );
47 }
48
49 extern HMODULE kernel32_handle;
50
51 extern const WCHAR *DIR_Windows;
52 extern const WCHAR *DIR_System;
53 extern const WCHAR *DIR_SysWow64;
54
55 extern void FILE_SetDosError(void);
56 extern WCHAR *FILE_name_AtoW( LPCSTR name, BOOL alloc );
57 extern DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen );
58
59 /* return values for MODULE_GetBinaryType */
60 enum binary_type
61 {
62 BINARY_UNKNOWN = 0,
63 BINARY_PE,
64 BINARY_WIN16,
65 BINARY_OS216,
66 BINARY_DOS,
67 BINARY_UNIX_EXE,
68 BINARY_UNIX_LIB
69 };
70
71 #define BINARY_FLAG_DLL 0x01
72 #define BINARY_FLAG_64BIT 0x02
73
74 struct binary_info
75 {
76 enum binary_type type;
77 DWORD flags;
78 void *res_start;
79 void *res_end;
80 };
81
82 /* module.c */
83 extern WCHAR *MODULE_get_dll_load_path( LPCWSTR module );
84 extern void MODULE_get_binary_info( HANDLE hfile, struct binary_info *info );
85
86 extern BOOL NLS_IsUnicodeOnlyLcid(LCID);
87
88 /* environ.c */
89 extern void ENV_CopyStartupInformation(void);
90
91 /* computername.c */
92 extern void COMPUTERNAME_Init(void);
93
94 /* locale.c */
95 extern void LOCALE_Init(void);
96 extern void LOCALE_InitRegistry(void);
97
98 /* oldconfig.c */
99 extern void convert_old_config(void);
100
101 /* returns directory handle for named objects */
102 extern HANDLE get_BaseNamedObjects_handle(void);
103
104 #endif
105
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.