2002-03-10 00:29:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2000 Juergen Schmied
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-10 00:29:33 +01:00
|
|
|
*/
|
|
|
|
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
#ifndef __WINE_NTDLL_MISC_H
|
|
|
|
#define __WINE_NTDLL_MISC_H
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2007-01-12 20:15:52 +01:00
|
|
|
#include <signal.h>
|
2007-10-20 16:56:44 +02:00
|
|
|
#include <sys/types.h>
|
2009-03-30 15:05:07 +02:00
|
|
|
#include <pthread.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
|
|
|
|
#include "windef.h"
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
#include "winnt.h"
|
2002-09-13 00:07:02 +02:00
|
|
|
#include "winternl.h"
|
2003-04-03 00:48:59 +02:00
|
|
|
#include "wine/server.h"
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2005-07-14 14:33:30 +02:00
|
|
|
#define MAX_NT_PATH_LENGTH 277
|
|
|
|
|
2007-10-18 15:16:07 +02:00
|
|
|
#define MAX_DOS_DRIVES 26
|
|
|
|
|
|
|
|
struct drive_info
|
|
|
|
{
|
|
|
|
dev_t dev;
|
|
|
|
ino_t ino;
|
|
|
|
};
|
|
|
|
|
2011-04-21 10:32:31 +02:00
|
|
|
extern NTSTATUS close_handle( HANDLE ) DECLSPEC_HIDDEN;
|
2010-12-02 11:33:03 +01:00
|
|
|
|
2005-11-02 21:54:12 +01:00
|
|
|
/* exceptions */
|
2011-04-21 10:32:31 +02:00
|
|
|
extern void wait_suspend( CONTEXT *context ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS send_debug_event( EXCEPTION_RECORD *rec, int first_chance, CONTEXT *context ) DECLSPEC_HIDDEN;
|
|
|
|
extern LONG call_vectored_handlers( EXCEPTION_RECORD *rec, CONTEXT *context ) DECLSPEC_HIDDEN;
|
|
|
|
extern void raise_status( NTSTATUS status, EXCEPTION_RECORD *rec ) DECLSPEC_NORETURN DECLSPEC_HIDDEN;
|
|
|
|
extern void set_cpu_context( const CONTEXT *context ) DECLSPEC_HIDDEN;
|
|
|
|
extern void copy_context( CONTEXT *to, const CONTEXT *from, DWORD flags ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS context_to_server( context_t *to, const CONTEXT *from ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS context_from_server( CONTEXT *to, const context_t *from ) DECLSPEC_HIDDEN;
|
|
|
|
extern void call_thread_entry_point( LPTHREAD_START_ROUTINE entry, void *arg ) DECLSPEC_NORETURN DECLSPEC_HIDDEN;
|
2005-05-07 20:10:30 +02:00
|
|
|
|
2009-02-16 11:46:44 +01:00
|
|
|
/* debug helpers */
|
2011-04-21 10:32:31 +02:00
|
|
|
extern LPCSTR debugstr_us( const UNICODE_STRING *str ) DECLSPEC_HIDDEN;
|
|
|
|
extern LPCSTR debugstr_ObjectAttributes(const OBJECT_ATTRIBUTES *oa) DECLSPEC_HIDDEN;
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
|
2011-04-21 10:32:31 +02:00
|
|
|
extern NTSTATUS NTDLL_queue_process_apc( HANDLE process, const apc_call_t *call, apc_result_t *result ) DECLSPEC_HIDDEN;
|
2003-06-30 23:00:15 +02:00
|
|
|
extern NTSTATUS NTDLL_wait_for_multiple_objects( UINT count, const HANDLE *handles, UINT flags,
|
2011-04-21 10:32:31 +02:00
|
|
|
const LARGE_INTEGER *timeout, HANDLE signal_object ) DECLSPEC_HIDDEN;
|
2003-11-04 05:50:18 +01:00
|
|
|
|
|
|
|
/* init routines */
|
2011-04-21 10:32:31 +02:00
|
|
|
extern NTSTATUS signal_alloc_thread( TEB **teb ) DECLSPEC_HIDDEN;
|
|
|
|
extern void signal_free_thread( TEB *teb ) DECLSPEC_HIDDEN;
|
|
|
|
extern void signal_init_thread( TEB *teb ) DECLSPEC_HIDDEN;
|
|
|
|
extern void signal_init_process(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void version_init( const WCHAR *appname ) DECLSPEC_HIDDEN;
|
|
|
|
extern void debug_init(void) DECLSPEC_HIDDEN;
|
|
|
|
extern HANDLE thread_init(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void actctx_init(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void virtual_init(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void virtual_init_threading(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void fill_cpu_info(void) DECLSPEC_HIDDEN;
|
|
|
|
extern void heap_set_debug_flags( HANDLE handle ) DECLSPEC_HIDDEN;
|
2003-03-31 03:37:04 +02:00
|
|
|
|
2003-11-06 01:08:05 +01:00
|
|
|
/* server support */
|
2011-04-21 10:32:31 +02:00
|
|
|
extern timeout_t server_start_time DECLSPEC_HIDDEN;
|
|
|
|
extern unsigned int server_cpus DECLSPEC_HIDDEN;
|
|
|
|
extern int is_wow64 DECLSPEC_HIDDEN;
|
|
|
|
extern void server_init_process(void) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS server_init_process_done(void) DECLSPEC_HIDDEN;
|
|
|
|
extern size_t server_init_thread( void *entry_point ) DECLSPEC_HIDDEN;
|
|
|
|
extern void DECLSPEC_NORETURN server_protocol_error( const char *err, ... ) DECLSPEC_HIDDEN;
|
|
|
|
extern void DECLSPEC_NORETURN server_protocol_perror( const char *err ) DECLSPEC_HIDDEN;
|
|
|
|
extern void DECLSPEC_NORETURN abort_thread( int status ) DECLSPEC_HIDDEN;
|
|
|
|
extern void DECLSPEC_NORETURN terminate_thread( int status ) DECLSPEC_HIDDEN;
|
|
|
|
extern void DECLSPEC_NORETURN exit_thread( int status ) DECLSPEC_HIDDEN;
|
|
|
|
extern sigset_t server_block_set DECLSPEC_HIDDEN;
|
|
|
|
extern void server_enter_uninterrupted_section( RTL_CRITICAL_SECTION *cs, sigset_t *sigset ) DECLSPEC_HIDDEN;
|
|
|
|
extern void server_leave_uninterrupted_section( RTL_CRITICAL_SECTION *cs, sigset_t *sigset ) DECLSPEC_HIDDEN;
|
|
|
|
extern int server_remove_fd_from_cache( HANDLE handle ) DECLSPEC_HIDDEN;
|
2008-12-08 16:05:17 +01:00
|
|
|
extern int server_get_unix_fd( HANDLE handle, unsigned int access, int *unix_fd,
|
2011-04-21 10:32:31 +02:00
|
|
|
int *needs_close, enum server_fd_type *type, unsigned int *options ) DECLSPEC_HIDDEN;
|
|
|
|
extern int server_pipe( int fd[2] ) DECLSPEC_HIDDEN;
|
2003-11-06 01:08:05 +01:00
|
|
|
|
2007-10-25 20:09:54 +02:00
|
|
|
/* security descriptors */
|
|
|
|
NTSTATUS NTDLL_create_struct_sd(PSECURITY_DESCRIPTOR nt_sd, struct security_descriptor **server_sd,
|
2011-04-21 10:32:31 +02:00
|
|
|
data_size_t *server_sd_len) DECLSPEC_HIDDEN;
|
|
|
|
void NTDLL_free_struct_sd(struct security_descriptor *server_sd) DECLSPEC_HIDDEN;
|
2007-10-25 20:09:54 +02:00
|
|
|
|
2003-03-07 00:41:37 +01:00
|
|
|
/* module handling */
|
2011-04-21 10:32:31 +02:00
|
|
|
extern NTSTATUS MODULE_DllThreadAttach( LPVOID lpReserved ) DECLSPEC_HIDDEN;
|
2004-06-15 02:47:00 +02:00
|
|
|
extern FARPROC RELAY_GetProcAddress( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
|
2011-04-21 10:32:31 +02:00
|
|
|
DWORD exp_size, FARPROC proc, DWORD ordinal, const WCHAR *user ) DECLSPEC_HIDDEN;
|
2004-06-15 02:47:00 +02:00
|
|
|
extern FARPROC SNOOP_GetProcAddress( HMODULE hmod, const IMAGE_EXPORT_DIRECTORY *exports, DWORD exp_size,
|
2011-04-21 10:32:31 +02:00
|
|
|
FARPROC origfun, DWORD ordinal, const WCHAR *user ) DECLSPEC_HIDDEN;
|
|
|
|
extern void RELAY_SetupDLL( HMODULE hmod ) DECLSPEC_HIDDEN;
|
|
|
|
extern void SNOOP_SetupDLL( HMODULE hmod ) DECLSPEC_HIDDEN;
|
|
|
|
extern UNICODE_STRING system_dir DECLSPEC_HIDDEN;
|
2003-04-08 01:27:54 +02:00
|
|
|
|
2008-02-12 22:39:19 +01:00
|
|
|
typedef LONG (WINAPI *PUNHANDLED_EXCEPTION_FILTER)(PEXCEPTION_POINTERS);
|
2011-04-21 10:32:31 +02:00
|
|
|
extern PUNHANDLED_EXCEPTION_FILTER unhandled_exception_filter DECLSPEC_HIDDEN;
|
2008-02-12 22:39:19 +01:00
|
|
|
|
2003-10-08 05:51:31 +02:00
|
|
|
/* redefine these to make sure we don't reference kernel symbols */
|
|
|
|
#define GetProcessHeap() (NtCurrentTeb()->Peb->ProcessHeap)
|
2007-05-23 09:36:29 +02:00
|
|
|
#define GetCurrentProcessId() (HandleToULong(NtCurrentTeb()->ClientId.UniqueProcess))
|
|
|
|
#define GetCurrentThreadId() (HandleToULong(NtCurrentTeb()->ClientId.UniqueThread))
|
2003-05-08 05:47:00 +02:00
|
|
|
|
2003-06-24 21:28:21 +02:00
|
|
|
/* Device IO */
|
2004-03-05 00:00:18 +01:00
|
|
|
extern NTSTATUS CDROM_DeviceIoControl(HANDLE hDevice,
|
2003-06-24 21:28:21 +02:00
|
|
|
HANDLE hEvent, PIO_APC_ROUTINE UserApcRoutine,
|
|
|
|
PVOID UserApcContext,
|
|
|
|
PIO_STATUS_BLOCK piosb,
|
|
|
|
ULONG IoControlCode,
|
|
|
|
LPVOID lpInBuffer, DWORD nInBufferSize,
|
2011-04-21 10:32:31 +02:00
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize) DECLSPEC_HIDDEN;
|
2006-01-12 13:32:51 +01:00
|
|
|
extern NTSTATUS COMM_DeviceIoControl(HANDLE hDevice,
|
|
|
|
HANDLE hEvent, PIO_APC_ROUTINE UserApcRoutine,
|
|
|
|
PVOID UserApcContext,
|
|
|
|
PIO_STATUS_BLOCK piosb,
|
|
|
|
ULONG IoControlCode,
|
|
|
|
LPVOID lpInBuffer, DWORD nInBufferSize,
|
2011-04-21 10:32:31 +02:00
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize) DECLSPEC_HIDDEN;
|
2006-01-26 13:23:08 +01:00
|
|
|
extern NTSTATUS TAPE_DeviceIoControl(HANDLE hDevice,
|
|
|
|
HANDLE hEvent, PIO_APC_ROUTINE UserApcRoutine,
|
|
|
|
PVOID UserApcContext,
|
|
|
|
PIO_STATUS_BLOCK piosb,
|
|
|
|
ULONG IoControlCode,
|
|
|
|
LPVOID lpInBuffer, DWORD nInBufferSize,
|
2011-04-21 10:32:31 +02:00
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize) DECLSPEC_HIDDEN;
|
2003-06-24 21:28:21 +02:00
|
|
|
|
2004-03-16 02:32:02 +01:00
|
|
|
/* file I/O */
|
2009-11-18 17:23:55 +01:00
|
|
|
struct stat;
|
2011-04-21 10:32:31 +02:00
|
|
|
extern NTSTATUS FILE_GetNtStatus(void) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS fill_stat_info( const struct stat *st, void *ptr, FILE_INFORMATION_CLASS class ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS server_get_unix_name( HANDLE handle, ANSI_STRING *unix_name ) DECLSPEC_HIDDEN;
|
|
|
|
extern void DIR_init_windows_dir( const WCHAR *windir, const WCHAR *sysdir ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL DIR_is_hidden_file( const UNICODE_STRING *name ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS DIR_unmount_device( HANDLE handle ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS DIR_get_unix_cwd( char **cwd ) DECLSPEC_HIDDEN;
|
|
|
|
extern unsigned int DIR_get_drives_info( struct drive_info info[MAX_DOS_DRIVES] ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS file_id_to_unix_file_name( const OBJECT_ATTRIBUTES *attr, ANSI_STRING *unix_name_ret ) DECLSPEC_HIDDEN;
|
2009-12-01 17:07:55 +01:00
|
|
|
extern NTSTATUS nt_to_unix_file_name_attr( const OBJECT_ATTRIBUTES *attr, ANSI_STRING *unix_name_ret,
|
2011-04-21 10:32:31 +02:00
|
|
|
UINT disposition ) DECLSPEC_HIDDEN;
|
2004-03-16 02:32:02 +01:00
|
|
|
|
|
|
|
/* virtual memory */
|
2011-04-21 10:32:31 +02:00
|
|
|
extern void virtual_get_system_info( SYSTEM_BASIC_INFORMATION *info ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS virtual_create_builtin_view( void *base ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS virtual_alloc_thread_stack( TEB *teb, SIZE_T reserve_size, SIZE_T commit_size ) DECLSPEC_HIDDEN;
|
|
|
|
extern void virtual_clear_thread_stack(void) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL virtual_handle_stack_fault( void *addr ) DECLSPEC_HIDDEN;
|
|
|
|
extern NTSTATUS virtual_handle_fault( LPCVOID addr, DWORD err ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL virtual_check_buffer_for_read( const void *ptr, SIZE_T size ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL virtual_check_buffer_for_write( void *ptr, SIZE_T size ) DECLSPEC_HIDDEN;
|
|
|
|
extern void VIRTUAL_SetForceExec( BOOL enable ) DECLSPEC_HIDDEN;
|
|
|
|
extern void virtual_release_address_space( BOOL free_high_mem ) DECLSPEC_HIDDEN;
|
|
|
|
extern struct _KUSER_SHARED_DATA *user_shared_data DECLSPEC_HIDDEN;
|
2003-12-08 22:58:55 +01:00
|
|
|
|
2008-12-27 19:47:46 +01:00
|
|
|
/* completion */
|
|
|
|
extern NTSTATUS NTDLL_AddCompletion( HANDLE hFile, ULONG_PTR CompletionValue,
|
2011-04-21 10:32:31 +02:00
|
|
|
NTSTATUS CompletionStatus, ULONG Information ) DECLSPEC_HIDDEN;
|
2008-12-27 19:47:46 +01:00
|
|
|
|
2004-01-18 23:11:52 +01:00
|
|
|
/* code pages */
|
2011-04-21 10:32:31 +02:00
|
|
|
extern int ntdll_umbstowcs(DWORD flags, const char* src, int srclen, WCHAR* dst, int dstlen) DECLSPEC_HIDDEN;
|
2004-01-18 23:11:52 +01:00
|
|
|
extern int ntdll_wcstoumbs(DWORD flags, const WCHAR* src, int srclen, char* dst, int dstlen,
|
2011-04-21 10:32:31 +02:00
|
|
|
const char* defchar, int *used ) DECLSPEC_HIDDEN;
|
2004-01-18 23:11:52 +01:00
|
|
|
|
2011-04-21 10:32:31 +02:00
|
|
|
extern int CDECL NTDLL__vsnprintf( char *str, SIZE_T len, const char *format, __ms_va_list args ) DECLSPEC_HIDDEN;
|
|
|
|
extern int CDECL NTDLL__vsnwprintf( WCHAR *str, SIZE_T len, const WCHAR *format, __ms_va_list args ) DECLSPEC_HIDDEN;
|
2009-01-28 19:17:34 +01:00
|
|
|
|
2006-02-22 16:30:05 +01:00
|
|
|
/* load order */
|
|
|
|
|
|
|
|
enum loadorder
|
|
|
|
{
|
|
|
|
LO_INVALID,
|
|
|
|
LO_DISABLED,
|
|
|
|
LO_NATIVE,
|
|
|
|
LO_BUILTIN,
|
|
|
|
LO_NATIVE_BUILTIN, /* native then builtin */
|
|
|
|
LO_BUILTIN_NATIVE, /* builtin then native */
|
|
|
|
LO_DEFAULT /* nothing specified, use default strategy */
|
|
|
|
};
|
|
|
|
|
2011-04-21 10:32:31 +02:00
|
|
|
extern enum loadorder get_load_order( const WCHAR *app_name, const WCHAR *path ) DECLSPEC_HIDDEN;
|
2006-02-22 16:30:05 +01:00
|
|
|
|
2005-06-06 22:04:33 +02:00
|
|
|
struct debug_info
|
|
|
|
{
|
|
|
|
char *str_pos; /* current position in strings buffer */
|
|
|
|
char *out_pos; /* current position in output buffer */
|
|
|
|
char strings[1024]; /* buffer for temporary strings */
|
|
|
|
char output[1024]; /* current output line */
|
|
|
|
};
|
|
|
|
|
2007-07-19 16:56:10 +02:00
|
|
|
/* thread private data, stored in NtCurrentTeb()->SystemReserved2 */
|
2005-06-06 22:04:33 +02:00
|
|
|
struct ntdll_thread_data
|
|
|
|
{
|
2009-08-29 12:08:11 +02:00
|
|
|
#ifdef __i386__
|
2009-11-19 12:27:09 +01:00
|
|
|
DWORD dr0; /* 1bc Debug registers */
|
|
|
|
DWORD dr1; /* 1c0 */
|
|
|
|
DWORD dr2; /* 1c4 */
|
|
|
|
DWORD dr3; /* 1c8 */
|
|
|
|
DWORD dr6; /* 1cc */
|
|
|
|
DWORD dr7; /* 1d0 */
|
|
|
|
DWORD fs; /* 1d4 TEB selector */
|
|
|
|
DWORD gs; /* 1d8 libc selector; update winebuild if you move this! */
|
|
|
|
void *vm86_ptr; /* 1dc data for vm86 mode */
|
2009-08-29 12:08:11 +02:00
|
|
|
#else
|
2009-11-19 12:27:09 +01:00
|
|
|
void *exit_frame; /* /2e8 exit frame pointer */
|
2009-08-29 12:08:11 +02:00
|
|
|
#endif
|
2009-11-19 12:27:09 +01:00
|
|
|
struct debug_info *debug_info; /* 1e0/2f0 info for debugstr functions */
|
|
|
|
int request_fd; /* 1e4/2f8 fd for sending server requests */
|
|
|
|
int reply_fd; /* 1e8/2fc fd for receiving server replies */
|
|
|
|
int wait_fd[2]; /* 1ec/300 fd for sleeping server requests */
|
|
|
|
BOOL wow64_redir; /* 1f4/308 Wow64 filesystem redirection flag */
|
|
|
|
pthread_t pthread_id; /* 1f8/310 pthread thread id */
|
2011-10-19 12:59:58 +02:00
|
|
|
#ifdef __i386__
|
|
|
|
WINE_VM86_TEB_INFO vm86; /* 1fc vm86 private data */
|
|
|
|
void *exit_frame; /* 204 exit frame pointer */
|
|
|
|
#endif
|
2005-06-06 22:04:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct ntdll_thread_data *ntdll_get_thread_data(void)
|
|
|
|
{
|
2009-11-19 12:27:09 +01:00
|
|
|
return (struct ntdll_thread_data *)NtCurrentTeb()->SpareBytes1;
|
2006-01-13 13:58:14 +01:00
|
|
|
}
|
|
|
|
|
2011-05-26 18:15:51 +02:00
|
|
|
extern mode_t FILE_umask DECLSPEC_HIDDEN;
|
|
|
|
|
2008-12-27 19:47:46 +01:00
|
|
|
/* Register functions */
|
|
|
|
|
|
|
|
#ifdef __i386__
|
2009-01-06 12:49:18 +01:00
|
|
|
#define DEFINE_REGS_ENTRYPOINT( name, args ) \
|
2008-12-27 19:47:46 +01:00
|
|
|
__ASM_GLOBAL_FUNC( name, \
|
2009-01-06 12:51:18 +01:00
|
|
|
".byte 0x68\n\t" /* pushl $__regs_func */ \
|
|
|
|
".long " __ASM_NAME("__regs_") #name "-.-11\n\t" \
|
|
|
|
".byte 0x6a," #args "\n\t" /* pushl $args */ \
|
2010-01-16 15:41:48 +01:00
|
|
|
"call " __ASM_NAME("__wine_call_from_regs") "\n\t" \
|
2009-08-12 14:35:43 +02:00
|
|
|
"ret $(4*" #args ")" ) /* fake ret to make copy protections happy */
|
2008-12-27 19:47:46 +01:00
|
|
|
#endif
|
2007-11-09 23:12:07 +01:00
|
|
|
|
- implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
NtAllocateLocallyUniqueId
- implementation or stubs for NtAccessCheck, NtSetSecurityObject,
RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
RtlValidSid, RtlxUnicodeStringToOemSize
- corrected most RtlString* functions, added documentation
- more fixes and partial implementations
2000-01-23 23:35:33 +01:00
|
|
|
#endif
|