kernel32: Move the DOS file handle functions to file16.c.
[wine/wine-gecko.git] / dlls / kernel32 / kernel_private.h
blob236f9f8fb816a91135a65b79aed3aa6693721c03
1 /*
2 * Kernel32 undocumented and private functions definition
4 * Copyright 2003 Eric Pouech
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.
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.
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
21 #ifndef __WINE_KERNEL_PRIVATE_H
22 #define __WINE_KERNEL_PRIVATE_H
24 #include "wine/server.h"
26 struct tagSYSLEVEL;
28 struct kernel_thread_data
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! */
38 static inline struct kernel_thread_data *kernel_get_thread_data(void)
40 return (struct kernel_thread_data *)NtCurrentTeb()->SystemReserved1;
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);
49 static inline BOOL is_console_handle(HANDLE h)
51 return h != INVALID_HANDLE_VALUE && ((UINT_PTR)h & 3) == 3;
54 /* map a real wineserver handle onto a kernel32 console handle */
55 static inline HANDLE console_handle_map(HANDLE h)
57 return h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE;
60 /* map a kernel32 console handle onto a real wineserver handle */
61 static inline obj_handle_t console_handle_unmap(HANDLE h)
63 return wine_server_obj_handle( h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE );
66 extern HMODULE kernel32_handle;
68 extern const WCHAR *DIR_Windows;
69 extern const WCHAR *DIR_System;
70 extern const WCHAR *DIR_SysWow64;
72 extern VOID SYSLEVEL_CheckNotLevel( INT level );
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 );
78 extern DWORD __wine_emulate_instruction( EXCEPTION_RECORD *rec, CONTEXT86 *context );
79 extern LONG CALLBACK INSTR_vectored_handler( EXCEPTION_POINTERS *ptrs );
81 /* return values for MODULE_GetBinaryType */
82 #define BINARY_UNKNOWN 0x00
83 #define BINARY_PE 0x01
84 #define BINARY_WIN16 0x02
85 #define BINARY_OS216 0x03
86 #define BINARY_DOS 0x04
87 #define BINARY_UNIX_EXE 0x05
88 #define BINARY_UNIX_LIB 0x06
89 #define BINARY_TYPE_MASK 0x0f
90 #define BINARY_FLAG_DLL 0x10
91 #define BINARY_FLAG_64BIT 0x20
93 /* module.c */
94 extern WCHAR *MODULE_get_dll_load_path( LPCWSTR module );
95 extern DWORD MODULE_GetBinaryType( HANDLE hfile, void **res_start, void **res_end );
97 extern BOOL NLS_IsUnicodeOnlyLcid(LCID);
99 extern HANDLE VXD_Open( LPCWSTR filename, DWORD access, LPSECURITY_ATTRIBUTES sa );
101 extern WORD DOSMEM_0000H;
102 extern WORD DOSMEM_BiosDataSeg;
103 extern WORD DOSMEM_BiosSysSeg;
105 /* dosmem.c */
106 extern BOOL DOSMEM_Init(void);
107 extern LPVOID DOSMEM_MapRealToLinear(DWORD); /* real-mode to linear */
108 extern LPVOID DOSMEM_MapDosToLinear(UINT); /* linear DOS to Wine */
109 extern UINT DOSMEM_MapLinearToDos(LPVOID); /* linear Wine to DOS */
110 extern BOOL load_winedos(void);
112 /* environ.c */
113 extern void ENV_CopyStartupInformation(void);
115 /* computername.c */
116 extern void COMPUTERNAME_Init(void);
118 /* locale.c */
119 extern void LOCALE_Init(void);
120 extern void LOCALE_InitRegistry(void);
122 /* oldconfig.c */
123 extern void convert_old_config(void);
125 extern struct winedos_exports
127 /* for global16.c */
128 void* (*AllocDosBlock)(UINT size, UINT16* pseg);
129 BOOL (*FreeDosBlock)(void* ptr);
130 UINT (*ResizeDosBlock)(void *ptr, UINT size, BOOL exact);
131 /* for instr.c */
132 BOOL (WINAPI *EmulateInterruptPM)( CONTEXT86 *context, BYTE intnum );
133 void (WINAPI *CallBuiltinHandler)( CONTEXT86 *context, BYTE intnum );
134 DWORD (WINAPI *inport)( int port, int size );
135 void (WINAPI *outport)( int port, int size, DWORD val );
136 } winedos;
138 /* returns directory handle for named objects */
139 extern HANDLE get_BaseNamedObjects_handle(void);
141 /* Register functions */
143 #ifdef __i386__
144 #define DEFINE_REGS_ENTRYPOINT( name, args ) \
145 __ASM_GLOBAL_FUNC( name, \
146 ".byte 0x68\n\t" /* pushl $__regs_func */ \
147 ".long " __ASM_NAME("__regs_") #name "-.-11\n\t" \
148 ".byte 0x6a," #args "\n\t" /* pushl $args */ \
149 "call " __ASM_NAME("__wine_call_from_32_regs") "\n\t" \
150 "ret $(4*" #args ")" ) /* fake ret to make copy protections happy */
151 #endif
153 #endif