129 lines
3.9 KiB
C
129 lines
3.9 KiB
C
/*
|
|
* Kernel32 undocumented and private functions definition
|
|
*
|
|
* Copyright 2003 Eric Pouech
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef __WINE_KERNEL_PRIVATE_H
|
|
#define __WINE_KERNEL_PRIVATE_H
|
|
|
|
#include "wine/server.h"
|
|
|
|
struct tagSYSLEVEL;
|
|
|
|
struct kernel_thread_data
|
|
{
|
|
UINT code_page; /* thread code page */
|
|
WORD stack_sel; /* 16-bit stack selector */
|
|
WORD htask16; /* Win16 task handle */
|
|
DWORD sys_count[4]; /* syslevel mutex entry counters */
|
|
struct tagSYSLEVEL *sys_mutex[4]; /* syslevel mutex pointers */
|
|
void *pad[44]; /* change this if you add fields! */
|
|
};
|
|
|
|
static inline struct kernel_thread_data *kernel_get_thread_data(void)
|
|
{
|
|
return (struct kernel_thread_data *)NtCurrentTeb()->SystemReserved1;
|
|
}
|
|
|
|
HANDLE WINAPI OpenConsoleW(LPCWSTR, DWORD, BOOL, DWORD);
|
|
BOOL WINAPI VerifyConsoleIoHandle(HANDLE);
|
|
HANDLE WINAPI DuplicateConsoleHandle(HANDLE, DWORD, BOOL, DWORD);
|
|
BOOL WINAPI CloseConsoleHandle(HANDLE handle);
|
|
HANDLE WINAPI GetConsoleInputWaitHandle(void);
|
|
|
|
static inline BOOL is_console_handle(HANDLE h)
|
|
{
|
|
return h != INVALID_HANDLE_VALUE && ((UINT_PTR)h & 3) == 3;
|
|
}
|
|
|
|
/* map a real wineserver handle onto a kernel32 console handle */
|
|
static inline HANDLE console_handle_map(HANDLE h)
|
|
{
|
|
return h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE;
|
|
}
|
|
|
|
/* map a kernel32 console handle onto a real wineserver handle */
|
|
static inline obj_handle_t console_handle_unmap(HANDLE h)
|
|
{
|
|
return wine_server_obj_handle( h != INVALID_HANDLE_VALUE ? (HANDLE)((UINT_PTR)h ^ 3) : INVALID_HANDLE_VALUE );
|
|
}
|
|
|
|
extern HMODULE kernel32_handle;
|
|
|
|
extern const WCHAR *DIR_Windows;
|
|
extern const WCHAR *DIR_System;
|
|
extern const WCHAR *DIR_SysWow64;
|
|
|
|
extern VOID SYSLEVEL_CheckNotLevel( INT level );
|
|
|
|
extern void FILE_SetDosError(void);
|
|
extern WCHAR *FILE_name_AtoW( LPCSTR name, BOOL alloc );
|
|
extern DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen );
|
|
|
|
/* return values for MODULE_GetBinaryType */
|
|
enum binary_type
|
|
{
|
|
BINARY_UNKNOWN = 0,
|
|
BINARY_PE,
|
|
BINARY_WIN16,
|
|
BINARY_OS216,
|
|
BINARY_DOS,
|
|
BINARY_UNIX_EXE,
|
|
BINARY_UNIX_LIB
|
|
};
|
|
|
|
#define BINARY_FLAG_DLL 0x01
|
|
#define BINARY_FLAG_64BIT 0x02
|
|
|
|
struct binary_info
|
|
{
|
|
enum binary_type type;
|
|
DWORD flags;
|
|
void *res_start;
|
|
void *res_end;
|
|
};
|
|
|
|
/* module.c */
|
|
extern WCHAR *MODULE_get_dll_load_path( LPCWSTR module );
|
|
extern void MODULE_get_binary_info( HANDLE hfile, struct binary_info *info );
|
|
|
|
extern BOOL NLS_IsUnicodeOnlyLcid(LCID);
|
|
|
|
/* vxd.c */
|
|
typedef BOOL (WINAPI *DeviceIoProc)(DWORD, LPVOID, DWORD, LPVOID, DWORD, LPDWORD, LPOVERLAPPED);
|
|
extern DeviceIoProc VXD_get_proc( HANDLE handle );
|
|
extern HANDLE VXD_Open( LPCWSTR filename, DWORD access, LPSECURITY_ATTRIBUTES sa );
|
|
|
|
/* environ.c */
|
|
extern void ENV_CopyStartupInformation(void);
|
|
|
|
/* computername.c */
|
|
extern void COMPUTERNAME_Init(void);
|
|
|
|
/* locale.c */
|
|
extern void LOCALE_Init(void);
|
|
extern void LOCALE_InitRegistry(void);
|
|
|
|
/* oldconfig.c */
|
|
extern void convert_old_config(void);
|
|
|
|
/* returns directory handle for named objects */
|
|
extern HANDLE get_BaseNamedObjects_handle(void);
|
|
|
|
#endif
|