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;
|
|
|
|
};
|
|
|
|
|
2005-11-02 21:54:12 +01:00
|
|
|
/* exceptions */
|
|
|
|
extern void wait_suspend( CONTEXT *context );
|
2009-04-30 13:08:32 +02:00
|
|
|
extern NTSTATUS send_debug_event( EXCEPTION_RECORD *rec, int first_chance, CONTEXT *context );
|
|
|
|
extern LONG call_vectored_handlers( EXCEPTION_RECORD *rec, CONTEXT *context );
|
2009-04-10 13:09:06 +02:00
|
|
|
extern void raise_status( NTSTATUS status, EXCEPTION_RECORD *rec ) DECLSPEC_NORETURN;
|
2006-01-11 20:20:32 +01:00
|
|
|
extern void set_cpu_context( const CONTEXT *context );
|
2009-03-13 11:31:25 +01:00
|
|
|
extern void copy_context( CONTEXT *to, const CONTEXT *from, DWORD flags );
|
2009-04-08 19:38:02 +02:00
|
|
|
extern NTSTATUS context_to_server( context_t *to, const CONTEXT *from );
|
|
|
|
extern NTSTATUS context_from_server( CONTEXT *to, const context_t *from );
|
2009-06-18 16:38:30 +02:00
|
|
|
extern void call_thread_entry_point( LPTHREAD_START_ROUTINE entry, void *arg ) DECLSPEC_NORETURN;
|
2005-05-07 20:10:30 +02:00
|
|
|
|
2009-02-16 11:46:44 +01:00
|
|
|
/* debug helpers */
|
2000-08-26 23:16:36 +02:00
|
|
|
extern LPCSTR debugstr_us( const UNICODE_STRING *str );
|
2009-02-16 11:46:44 +01:00
|
|
|
extern LPCSTR debugstr_ObjectAttributes(const OBJECT_ATTRIBUTES *oa);
|
- 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
|
|
|
|
2007-01-15 22:26:32 +01:00
|
|
|
extern NTSTATUS NTDLL_queue_process_apc( HANDLE process, const apc_call_t *call, apc_result_t *result );
|
2003-06-30 23:00:15 +02:00
|
|
|
extern NTSTATUS NTDLL_wait_for_multiple_objects( UINT count, const HANDLE *handles, UINT flags,
|
2005-04-24 19:35:52 +02:00
|
|
|
const LARGE_INTEGER *timeout, HANDLE signal_object );
|
2003-11-04 05:50:18 +01:00
|
|
|
|
|
|
|
/* init routines */
|
2009-11-19 12:25:52 +01:00
|
|
|
extern NTSTATUS signal_alloc_thread( TEB **teb );
|
|
|
|
extern void signal_free_thread( TEB *teb );
|
2009-02-18 13:04:50 +01:00
|
|
|
extern void signal_init_thread( TEB *teb );
|
2008-07-03 20:18:23 +02:00
|
|
|
extern void signal_init_process(void);
|
2005-08-10 15:12:27 +02:00
|
|
|
extern void version_init( const WCHAR *appname );
|
2004-01-07 05:50:11 +01:00
|
|
|
extern void debug_init(void);
|
2006-02-22 09:57:19 +01:00
|
|
|
extern HANDLE thread_init(void);
|
2007-07-25 16:48:40 +02:00
|
|
|
extern void actctx_init(void);
|
2006-07-24 15:19:32 +02:00
|
|
|
extern void virtual_init(void);
|
|
|
|
extern void virtual_init_threading(void);
|
2009-09-15 21:38:07 +02:00
|
|
|
extern void fill_cpu_info(void);
|
2010-01-22 12:33:03 +01:00
|
|
|
extern void heap_set_debug_flags( HANDLE handle );
|
2003-03-31 03:37:04 +02:00
|
|
|
|
2003-11-06 01:08:05 +01:00
|
|
|
/* server support */
|
2007-04-17 20:08:59 +02:00
|
|
|
extern timeout_t server_start_time;
|
2009-07-07 11:38:19 +02:00
|
|
|
extern unsigned int server_cpus;
|
2009-07-06 15:08:39 +02:00
|
|
|
extern int is_wow64;
|
2003-11-06 01:08:05 +01:00
|
|
|
extern void server_init_process(void);
|
2007-01-18 12:23:04 +01:00
|
|
|
extern NTSTATUS server_init_process_done(void);
|
2009-02-18 12:30:01 +01:00
|
|
|
extern size_t server_init_thread( void *entry_point );
|
2003-11-06 01:08:05 +01:00
|
|
|
extern void DECLSPEC_NORETURN server_protocol_error( const char *err, ... );
|
|
|
|
extern void DECLSPEC_NORETURN server_protocol_perror( const char *err );
|
2009-02-20 11:23:08 +01:00
|
|
|
extern void DECLSPEC_NORETURN abort_thread( int status );
|
2009-08-28 11:52:21 +02:00
|
|
|
extern void DECLSPEC_NORETURN terminate_thread( int status );
|
2009-06-18 16:50:34 +02:00
|
|
|
extern void DECLSPEC_NORETURN exit_thread( int status );
|
2007-01-18 12:20:56 +01:00
|
|
|
extern sigset_t server_block_set;
|
|
|
|
extern void server_enter_uninterrupted_section( RTL_CRITICAL_SECTION *cs, sigset_t *sigset );
|
|
|
|
extern void server_leave_uninterrupted_section( RTL_CRITICAL_SECTION *cs, sigset_t *sigset );
|
2008-12-08 16:05:17 +01:00
|
|
|
extern int server_remove_fd_from_cache( HANDLE handle );
|
|
|
|
extern int server_get_unix_fd( HANDLE handle, unsigned int access, int *unix_fd,
|
2007-04-10 22:32:46 +02:00
|
|
|
int *needs_close, enum server_fd_type *type, unsigned int *options );
|
2009-07-01 12:13:34 +02:00
|
|
|
extern int server_pipe( int fd[2] );
|
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,
|
|
|
|
data_size_t *server_sd_len);
|
|
|
|
void NTDLL_free_struct_sd(struct security_descriptor *server_sd);
|
|
|
|
|
2003-03-07 00:41:37 +01:00
|
|
|
/* module handling */
|
2006-03-14 15:35:21 +01:00
|
|
|
extern NTSTATUS MODULE_DllThreadAttach( LPVOID lpReserved );
|
2004-06-15 02:47:00 +02:00
|
|
|
extern FARPROC RELAY_GetProcAddress( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
|
2005-12-18 10:45:01 +01:00
|
|
|
DWORD exp_size, FARPROC proc, DWORD ordinal, const WCHAR *user );
|
2004-06-15 02:47:00 +02:00
|
|
|
extern FARPROC SNOOP_GetProcAddress( HMODULE hmod, const IMAGE_EXPORT_DIRECTORY *exports, DWORD exp_size,
|
2004-03-16 04:10:07 +01:00
|
|
|
FARPROC origfun, DWORD ordinal, const WCHAR *user );
|
2003-09-19 06:32:39 +02:00
|
|
|
extern void RELAY_SetupDLL( HMODULE hmod );
|
2003-09-19 06:04:57 +02:00
|
|
|
extern void SNOOP_SetupDLL( HMODULE hmod );
|
2007-07-19 18:05:59 +02:00
|
|
|
extern UNICODE_STRING windows_dir;
|
2004-07-16 00:07:21 +02:00
|
|
|
extern UNICODE_STRING system_dir;
|
2003-04-08 01:27:54 +02:00
|
|
|
|
2008-02-12 22:39:19 +01:00
|
|
|
typedef LONG (WINAPI *PUNHANDLED_EXCEPTION_FILTER)(PEXCEPTION_POINTERS);
|
|
|
|
extern PUNHANDLED_EXCEPTION_FILTER unhandled_exception_filter;
|
|
|
|
|
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,
|
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize);
|
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,
|
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize);
|
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,
|
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize);
|
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;
|
2004-03-16 02:32:02 +01:00
|
|
|
extern NTSTATUS FILE_GetNtStatus(void);
|
2009-11-18 17:23:55 +01:00
|
|
|
extern NTSTATUS fill_stat_info( const struct stat *st, void *ptr, FILE_INFORMATION_CLASS class );
|
2010-01-08 13:16:57 +01:00
|
|
|
extern NTSTATUS server_get_unix_name( HANDLE handle, ANSI_STRING *unix_name );
|
2009-10-22 19:55:02 +02:00
|
|
|
extern void DIR_init_windows_dir( const WCHAR *windir, const WCHAR *sysdir );
|
2004-04-20 02:36:29 +02:00
|
|
|
extern BOOL DIR_is_hidden_file( const UNICODE_STRING *name );
|
2005-10-28 18:45:24 +02:00
|
|
|
extern NTSTATUS DIR_unmount_device( HANDLE handle );
|
2005-08-11 12:41:26 +02:00
|
|
|
extern NTSTATUS DIR_get_unix_cwd( char **cwd );
|
2007-10-18 15:16:07 +02:00
|
|
|
extern unsigned int DIR_get_drives_info( struct drive_info info[MAX_DOS_DRIVES] );
|
2009-12-02 17:35:43 +01:00
|
|
|
extern NTSTATUS file_id_to_unix_file_name( const OBJECT_ATTRIBUTES *attr, ANSI_STRING *unix_name_ret );
|
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,
|
|
|
|
UINT disposition );
|
2004-03-16 02:32:02 +01:00
|
|
|
|
|
|
|
/* virtual memory */
|
2008-11-03 13:23:48 +01:00
|
|
|
extern void virtual_get_system_info( SYSTEM_BASIC_INFORMATION *info );
|
2008-11-14 17:40:54 +01:00
|
|
|
extern NTSTATUS virtual_create_system_view( void *base, SIZE_T size, DWORD vprot );
|
2009-02-23 14:24:59 +01:00
|
|
|
extern NTSTATUS virtual_alloc_thread_stack( TEB *teb, SIZE_T reserve_size, SIZE_T commit_size );
|
2008-06-26 21:10:57 +02:00
|
|
|
extern void virtual_clear_thread_stack(void);
|
2008-04-01 17:37:17 +02:00
|
|
|
extern BOOL virtual_handle_stack_fault( void *addr );
|
2008-11-25 12:02:16 +01:00
|
|
|
extern NTSTATUS virtual_handle_fault( LPCVOID addr, DWORD err );
|
2009-01-14 20:17:52 +01:00
|
|
|
extern BOOL virtual_check_buffer_for_read( const void *ptr, SIZE_T size );
|
2009-01-14 20:17:52 +01:00
|
|
|
extern BOOL virtual_check_buffer_for_write( void *ptr, SIZE_T size );
|
2006-12-05 15:42:29 +01:00
|
|
|
extern void VIRTUAL_SetForceExec( BOOL enable );
|
2009-06-25 14:18:53 +02:00
|
|
|
extern void virtual_release_address_space( BOOL free_high_mem );
|
2007-05-18 18:09:03 +02:00
|
|
|
extern struct _KUSER_SHARED_DATA *user_shared_data;
|
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,
|
|
|
|
NTSTATUS CompletionStatus, ULONG Information );
|
|
|
|
|
2004-01-18 23:11:52 +01:00
|
|
|
/* code pages */
|
|
|
|
extern int ntdll_umbstowcs(DWORD flags, const char* src, int srclen, WCHAR* dst, int dstlen);
|
|
|
|
extern int ntdll_wcstoumbs(DWORD flags, const WCHAR* src, int srclen, char* dst, int dstlen,
|
|
|
|
const char* defchar, int *used );
|
|
|
|
|
2009-01-28 19:17:34 +01:00
|
|
|
extern int CDECL NTDLL__vsnprintf( char *str, SIZE_T len, const char *format, __ms_va_list args );
|
|
|
|
extern int CDECL NTDLL__vsnwprintf( WCHAR *str, SIZE_T len, const WCHAR *format, __ms_va_list args );
|
|
|
|
|
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 */
|
|
|
|
};
|
|
|
|
|
|
|
|
extern enum loadorder get_load_order( const WCHAR *app_name, const WCHAR *path );
|
|
|
|
|
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 */
|
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
|
|
|
}
|
|
|
|
|
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 */
|
2009-01-06 17:01:30 +01:00
|
|
|
#elif defined(__x86_64__)
|
|
|
|
#define DEFINE_REGS_ENTRYPOINT( name, args ) \
|
|
|
|
__ASM_GLOBAL_FUNC( name, \
|
|
|
|
"movq %rcx,8(%rsp)\n\t" \
|
|
|
|
"movq %rdx,16(%rsp)\n\t" \
|
|
|
|
"movq $" #args ",%rcx\n\t" \
|
|
|
|
"leaq " __ASM_NAME("__regs_") #name "(%rip),%rdx\n\t" \
|
|
|
|
"call " __ASM_NAME("__wine_call_from_regs"))
|
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
|