mshtml: Correct test for another unknown dispID.
[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 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 BOOL           CONSOLE_Init(RTL_USER_PROCESS_PARAMETERS *params);
32
33 static inline BOOL is_console_handle(HANDLE h)
34 {
35     return h != INVALID_HANDLE_VALUE && ((UINT_PTR)h & 3) == 3;
36 }
37
38 /* map a real wineserver handle onto a kernel32 console handle */
39 static inline HANDLE console_handle_map(HANDLE h)
40 {
41     return h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE;
42 }
43
44 /* map a kernel32 console handle onto a real wineserver handle */
45 static inline obj_handle_t console_handle_unmap(HANDLE h)
46 {
47     return wine_server_obj_handle( h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE );
48 }
49
50 /* Some Wine specific values for Console inheritance (params->ConsoleHandle) */
51 #define KERNEL32_CONSOLE_ALLOC          ((HANDLE)1)
52 #define KERNEL32_CONSOLE_SHELL          ((HANDLE)2)
53
54 extern HMODULE kernel32_handle;
55
56 extern const WCHAR *DIR_Windows;
57 extern const WCHAR *DIR_System;
58 extern const WCHAR *DIR_SysWow64;
59
60 extern void FILE_SetDosError(void);
61 extern WCHAR *FILE_name_AtoW( LPCSTR name, BOOL alloc );
62 extern DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen );
63
64 /* return values for MODULE_GetBinaryType */
65 enum binary_type
66 {
67     BINARY_UNKNOWN = 0,
68     BINARY_PE,
69     BINARY_WIN16,
70     BINARY_OS216,
71     BINARY_DOS,
72     BINARY_UNIX_EXE,
73     BINARY_UNIX_LIB
74 };
75
76 #define BINARY_FLAG_DLL   0x01
77 #define BINARY_FLAG_64BIT 0x02
78
79 struct binary_info
80 {
81     enum binary_type type;
82     DWORD            flags;
83     void            *res_start;
84     void            *res_end;
85 };
86
87 /* module.c */
88 extern WCHAR *MODULE_get_dll_load_path( LPCWSTR module );
89 extern void MODULE_get_binary_info( HANDLE hfile, struct binary_info *info );
90
91 extern BOOL NLS_IsUnicodeOnlyLcid(LCID);
92
93 /* environ.c */
94 extern void ENV_CopyStartupInformation(void);
95
96 /* computername.c */
97 extern void COMPUTERNAME_Init(void);
98
99 /* locale.c */
100 extern void LOCALE_Init(void);
101 extern void LOCALE_InitRegistry(void);
102
103 /* oldconfig.c */
104 extern void convert_old_config(void);
105
106 /* returns directory handle for named objects */
107 extern HANDLE get_BaseNamedObjects_handle(void);
108
109 #endif