Release 961215
Sun Dec 15 16:18:15 1996 Alexandre Julliard <julliard@lrc.epfl.ch>
* [graphics/x11drv/bitblt.c]
Fixed BITBLT_StretchImage for partially covered or inverted
bitmaps.
* [objects/dib.c]
Fixed the upside-down bitmap problem.
Sat Dec 14 02:49:57 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
* [if1632/user32.spec]
IsMenu and RemoveMenu added (use existing Win16 functions).
* [include/windows.h]
Corrections to BITMAPINFOHEADER structure.
* [loader/module.c] [if1632/kernel32.spec]
New function GetModuleFileName32A (heavily based on original
Win16 version).
* [loader/pe_image.c]
Hack to allow files with short PE header to be loaded (e.g.
COMDLG32.DLL from Win32s).
* [misc/winsock_async.c]
#if out EIDRM case (not present in FreeBSD).
* [tools/build.c]
Remove trailing comments from .s files generated by build
as these break assembly when not run through pre-processor.
* [windows/graphics.c] [if1632/gdi32.spec]
New function Polyline32 - based on original Polyline. Needs
metafile support adding still.
Fri Dec 13 13:04:06 1996 Bruce Milner <Bruce.Milner@genetics.utah.edu>
* [win32/findfile.c] [if1632/kernel.spec]
FindFirstFile32A(): Use dos current directory for drive prefixes.
FindNextFile32A(): Fill in file attribute information.
Implement FindFirstFile16, FindNextFile16, FindClose16.
* [files/drive.c]
GetCurrentDirectory32A - Fix problem with null 3rd character in
string.
Tue Dec 10 14:49:07 1996 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [windows/painting.c][windows/message.c]
Don't use linked lists to call SendMessage(), for it might destroy
the current listentry.
* [misc/registry.c]
Fixed temporary file saving (rename doesn't work across
partitions).
* [files/*.c]
GetFullPathName*,GetDriveType32A fixed, CreateDirectoryEx*,
GetVolumeInformation32W fixed.
* [win32/process.c][if1632/kernel.spec][if1632/kernel32.spec]
LoadLibrary* updated to new naming std., *32W added.
* [win32/console.c] [include/wincon.h]
Additions for NT commandline executables.
* [if1632/advapi32.spec][if1632/kernel32.spec][win32/init.c]
GetUserName32W added, GetComputerName32W added,
GetStartupInfo32W added, GetSystemInfo updated to NT standard.
* [windows/msgbox.c][misc/shell.c][windows/graphics.c]
MessageBox32W, ShellAbout32W, CommandLineToArgvW, Polygon32 added.
* [misc/crtdll.c][include/crtdll.h][if1632/crtdll.spec][misc/ntdll.c]
[if1632/ntdll.spec]
Lot of new unicode functions added (needed for NT).
* [loader/pe_image.c]
NtCurrentTeb added.
Tue Dec 10 22:39:33 1996 Albrecht Kleine <kleine@ak.sax.de>
* [windows/keyboard.c]
Rewrote function TranslateAccelerator().
Mon Dec 9 14:52:13 1996 Slaven Rezic <eserte@cs.tu-berlin.de>
* [windows/defwnd.c]
DEFWND_SetText(): Set icon name.
Sun Dec 8 23:30:00 1996 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [loader/signal.c] [misc/winsock.c] [misc/winsock_async.c]
[if1632/winsock.spec]
IPC resource cleanup, bugfixes.
* [windows/dialog.c] [windows/defdlg.c]
More DefDlgProc() fixes.
Sun Dec 8 14:01:42 1996 Vadim Strizhevsky <striv@ms.com>
* [misc/clipboard.c] [objects/font.c] [win32/init.c]
[win32/newfns.c] [windows/graphics.c]
Added a few WIN32 functions which needed to run some win32
accessories. Clock should now work almost as well as 16 bit version.
Add: RegisterClipboardFormat32W GetTextExtentExPoint32*
GetModuleHandleW, DisableThreadLibraryCalls (empty stub),
Polygon32
Fix: Polygon16 possible memory leak on error return.
1996-12-15 20:45:59 +01:00
|
|
|
/*
|
|
|
|
* NT basis DLL
|
|
|
|
*
|
1998-11-01 15:00:21 +01:00
|
|
|
* This file contains the Rtl* API functions. These should be implementable.
|
|
|
|
*
|
|
|
|
* Copyright 1996-1998 Marcus Meissner
|
1999-01-31 10:24:44 +01:00
|
|
|
* 1999 Alex Korobka
|
Release 961215
Sun Dec 15 16:18:15 1996 Alexandre Julliard <julliard@lrc.epfl.ch>
* [graphics/x11drv/bitblt.c]
Fixed BITBLT_StretchImage for partially covered or inverted
bitmaps.
* [objects/dib.c]
Fixed the upside-down bitmap problem.
Sat Dec 14 02:49:57 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
* [if1632/user32.spec]
IsMenu and RemoveMenu added (use existing Win16 functions).
* [include/windows.h]
Corrections to BITMAPINFOHEADER structure.
* [loader/module.c] [if1632/kernel32.spec]
New function GetModuleFileName32A (heavily based on original
Win16 version).
* [loader/pe_image.c]
Hack to allow files with short PE header to be loaded (e.g.
COMDLG32.DLL from Win32s).
* [misc/winsock_async.c]
#if out EIDRM case (not present in FreeBSD).
* [tools/build.c]
Remove trailing comments from .s files generated by build
as these break assembly when not run through pre-processor.
* [windows/graphics.c] [if1632/gdi32.spec]
New function Polyline32 - based on original Polyline. Needs
metafile support adding still.
Fri Dec 13 13:04:06 1996 Bruce Milner <Bruce.Milner@genetics.utah.edu>
* [win32/findfile.c] [if1632/kernel.spec]
FindFirstFile32A(): Use dos current directory for drive prefixes.
FindNextFile32A(): Fill in file attribute information.
Implement FindFirstFile16, FindNextFile16, FindClose16.
* [files/drive.c]
GetCurrentDirectory32A - Fix problem with null 3rd character in
string.
Tue Dec 10 14:49:07 1996 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [windows/painting.c][windows/message.c]
Don't use linked lists to call SendMessage(), for it might destroy
the current listentry.
* [misc/registry.c]
Fixed temporary file saving (rename doesn't work across
partitions).
* [files/*.c]
GetFullPathName*,GetDriveType32A fixed, CreateDirectoryEx*,
GetVolumeInformation32W fixed.
* [win32/process.c][if1632/kernel.spec][if1632/kernel32.spec]
LoadLibrary* updated to new naming std., *32W added.
* [win32/console.c] [include/wincon.h]
Additions for NT commandline executables.
* [if1632/advapi32.spec][if1632/kernel32.spec][win32/init.c]
GetUserName32W added, GetComputerName32W added,
GetStartupInfo32W added, GetSystemInfo updated to NT standard.
* [windows/msgbox.c][misc/shell.c][windows/graphics.c]
MessageBox32W, ShellAbout32W, CommandLineToArgvW, Polygon32 added.
* [misc/crtdll.c][include/crtdll.h][if1632/crtdll.spec][misc/ntdll.c]
[if1632/ntdll.spec]
Lot of new unicode functions added (needed for NT).
* [loader/pe_image.c]
NtCurrentTeb added.
Tue Dec 10 22:39:33 1996 Albrecht Kleine <kleine@ak.sax.de>
* [windows/keyboard.c]
Rewrote function TranslateAccelerator().
Mon Dec 9 14:52:13 1996 Slaven Rezic <eserte@cs.tu-berlin.de>
* [windows/defwnd.c]
DEFWND_SetText(): Set icon name.
Sun Dec 8 23:30:00 1996 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [loader/signal.c] [misc/winsock.c] [misc/winsock_async.c]
[if1632/winsock.spec]
IPC resource cleanup, bugfixes.
* [windows/dialog.c] [windows/defdlg.c]
More DefDlgProc() fixes.
Sun Dec 8 14:01:42 1996 Vadim Strizhevsky <striv@ms.com>
* [misc/clipboard.c] [objects/font.c] [win32/init.c]
[win32/newfns.c] [windows/graphics.c]
Added a few WIN32 functions which needed to run some win32
accessories. Clock should now work almost as well as 16 bit version.
Add: RegisterClipboardFormat32W GetTextExtentExPoint32*
GetModuleHandleW, DisableThreadLibraryCalls (empty stub),
Polygon32
Fix: Polygon16 possible memory leak on error return.
1996-12-15 20:45:59 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1999-02-19 17:29:05 +01:00
|
|
|
#include "heap.h"
|
1999-05-23 12:25:25 +02:00
|
|
|
#include "debugtools.h"
|
2000-02-10 20:03:02 +01:00
|
|
|
#include "windef.h"
|
|
|
|
#include "wingdi.h"
|
1999-02-19 17:29:05 +01:00
|
|
|
#include "winuser.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "stackframe.h"
|
|
|
|
|
1999-03-09 18:47:51 +01:00
|
|
|
#include "ntddk.h"
|
1998-10-16 16:28:45 +02:00
|
|
|
#include "winreg.h"
|
Release 961215
Sun Dec 15 16:18:15 1996 Alexandre Julliard <julliard@lrc.epfl.ch>
* [graphics/x11drv/bitblt.c]
Fixed BITBLT_StretchImage for partially covered or inverted
bitmaps.
* [objects/dib.c]
Fixed the upside-down bitmap problem.
Sat Dec 14 02:49:57 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
* [if1632/user32.spec]
IsMenu and RemoveMenu added (use existing Win16 functions).
* [include/windows.h]
Corrections to BITMAPINFOHEADER structure.
* [loader/module.c] [if1632/kernel32.spec]
New function GetModuleFileName32A (heavily based on original
Win16 version).
* [loader/pe_image.c]
Hack to allow files with short PE header to be loaded (e.g.
COMDLG32.DLL from Win32s).
* [misc/winsock_async.c]
#if out EIDRM case (not present in FreeBSD).
* [tools/build.c]
Remove trailing comments from .s files generated by build
as these break assembly when not run through pre-processor.
* [windows/graphics.c] [if1632/gdi32.spec]
New function Polyline32 - based on original Polyline. Needs
metafile support adding still.
Fri Dec 13 13:04:06 1996 Bruce Milner <Bruce.Milner@genetics.utah.edu>
* [win32/findfile.c] [if1632/kernel.spec]
FindFirstFile32A(): Use dos current directory for drive prefixes.
FindNextFile32A(): Fill in file attribute information.
Implement FindFirstFile16, FindNextFile16, FindClose16.
* [files/drive.c]
GetCurrentDirectory32A - Fix problem with null 3rd character in
string.
Tue Dec 10 14:49:07 1996 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [windows/painting.c][windows/message.c]
Don't use linked lists to call SendMessage(), for it might destroy
the current listentry.
* [misc/registry.c]
Fixed temporary file saving (rename doesn't work across
partitions).
* [files/*.c]
GetFullPathName*,GetDriveType32A fixed, CreateDirectoryEx*,
GetVolumeInformation32W fixed.
* [win32/process.c][if1632/kernel.spec][if1632/kernel32.spec]
LoadLibrary* updated to new naming std., *32W added.
* [win32/console.c] [include/wincon.h]
Additions for NT commandline executables.
* [if1632/advapi32.spec][if1632/kernel32.spec][win32/init.c]
GetUserName32W added, GetComputerName32W added,
GetStartupInfo32W added, GetSystemInfo updated to NT standard.
* [windows/msgbox.c][misc/shell.c][windows/graphics.c]
MessageBox32W, ShellAbout32W, CommandLineToArgvW, Polygon32 added.
* [misc/crtdll.c][include/crtdll.h][if1632/crtdll.spec][misc/ntdll.c]
[if1632/ntdll.spec]
Lot of new unicode functions added (needed for NT).
* [loader/pe_image.c]
NtCurrentTeb added.
Tue Dec 10 22:39:33 1996 Albrecht Kleine <kleine@ak.sax.de>
* [windows/keyboard.c]
Rewrote function TranslateAccelerator().
Mon Dec 9 14:52:13 1996 Slaven Rezic <eserte@cs.tu-berlin.de>
* [windows/defwnd.c]
DEFWND_SetText(): Set icon name.
Sun Dec 8 23:30:00 1996 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [loader/signal.c] [misc/winsock.c] [misc/winsock_async.c]
[if1632/winsock.spec]
IPC resource cleanup, bugfixes.
* [windows/dialog.c] [windows/defdlg.c]
More DefDlgProc() fixes.
Sun Dec 8 14:01:42 1996 Vadim Strizhevsky <striv@ms.com>
* [misc/clipboard.c] [objects/font.c] [win32/init.c]
[win32/newfns.c] [windows/graphics.c]
Added a few WIN32 functions which needed to run some win32
accessories. Clock should now work almost as well as 16 bit version.
Add: RegisterClipboardFormat32W GetTextExtentExPoint32*
GetModuleHandleW, DisableThreadLibraryCalls (empty stub),
Polygon32
Fix: Polygon16 possible memory leak on error return.
1996-12-15 20:45:59 +01:00
|
|
|
|
1999-04-19 16:56:29 +02:00
|
|
|
DEFAULT_DEBUG_CHANNEL(ntdll)
|
|
|
|
|
1999-02-17 14:51:06 +01:00
|
|
|
|
1999-03-09 18:47:51 +01:00
|
|
|
/*
|
|
|
|
* resource functions
|
Release 970120
Sun Jan 19 11:46:48 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [loader/module.c]
Fixed LoadModule() to always call the DLL initialization code.
* [windows/event.c]
Moved all the keyboard stuff to windows/keyboard.c
* [tools/build.c]
Fixed Win32 register functions.
Sat Jan 18 22:24:41 1997 David Makepeace <D.Makepeace@mailbox.uq.oz.au>
* [tools/makedep.c]
Fixed bug which causes SEGV on Solaris x86.
Fri Jan 17 18:32:27 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Implemented WM_UNDO, WM_CONTEXTMENU (temporary using WM_RBUTTONUP),
WM_COMMAND, WM_INITPOPUPMENU, WM_SYSKEYDOWN.
Fixed EM_SETSEL and some minor bugs (features).
Hence: fully functional undo and a win95 menu with the right mouse
button.
* [include/resources.h] [resources/TODO] [resources/sysres_??.rc]
Added a context menu for the edit control.
Translations, please ...
Fri Jan 17 08:29:52 1997 David Faure <david.faure@ifhamy.insa-lyon.fr>
* [windows/event.c]
Move EVENT_ToAscii to windows/keyboard.c (where name ToAscii)
Fixed Keypad keys 0-9 and . in EVENT_event_to_vkey.
Added 3-state handling of toggle keys (CapsLock, NumLock) in order
to make them work with any X server.
Toggle keys now generate WM_KEYDOWN and WM_KEYUP on each pressing.
* [include/keyboard.h]
Totally replaced the file (formerly containing the vkcase definitions)
by the declaration of 'extern' variables contained by event.c and used
by keyboard.c
* [windows/keyboard.c]
Started to rewrite VkKeyScan and MapVirtualKey, to make them use the
table keyc2vkey or X functions only.
ToAscii : added keypad 0-9 and . special case.
Changed toggle keys active mask from 0x80 to 0x1.
* [misc/keyboard.c]
File deleted. Contents moved to windows/keyboard.c.
* [misc/main.c]
Added putenv XKB_DISABLE to disable XKB extension (which, when
present, causes AltGr to change keyboard group instead of being a
modifier).
Tue Jan 14 22:56:43 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [windows/event.c]
Do not assume NumLockMask is Mod2Mask, but compute it by scanning
output of XGetModifierMapping for XK_Num_Lock.
Tue Jan 14 15:49:49 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_*.c] [include/peexe.h] [include/resource32.h]
[debugger/*.c]
General clean up.
Changed defines/structures to match Windows NT SDK.
* [loader/main.c]
Don't crash on empty command-line.
* [windows/winpos.c]
winpos.c made win32 clean.
* [misc/ntdll.c]
Some string conversion additions.
* [files/file.c]
GetFileAttributes/GetTempFileName fixed.
* [misc/ver.c]
VerInstallFile implemented.
Mon Jan 13 15:03:11 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [tools/build.c]: Use PREFIX also in stabs messages.
Mon Jan 13 10:40:33 1997 John Harvey <john@division.co.uk>
* [graphics/win16drv/*] [include/win16drv.h]
Many fixes and some new features.
* [graphics/x11drv/font.c] [graphics/x11drv/init.c]
[include/x11drv.h] [objects/font.c]
GetTextMetrics() moved to graphics driver.
* [if1632/gdi.spec] [misc/fontengine.c] [misc/Makefile.in]
New dummy EngineEnumerateFont, EngineRealizeFont functions.
* [include/windows.h]
TEXTFORM16 and FONTINFO16 structure definitions moved here from
include/win16drv.h
1997-01-20 20:43:45 +01:00
|
|
|
*/
|
1997-02-15 15:29:56 +01:00
|
|
|
|
1999-01-31 10:24:44 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* RtlInitializeResource (NTDLL.409)
|
|
|
|
*
|
|
|
|
* xxxResource() functions implement multiple-reader-single-writer lock.
|
|
|
|
* The code is based on information published in WDJ January 1999 issue.
|
|
|
|
*/
|
|
|
|
void WINAPI RtlInitializeResource(LPRTL_RWLOCK rwl)
|
|
|
|
{
|
|
|
|
if( rwl )
|
|
|
|
{
|
|
|
|
rwl->iNumberActive = 0;
|
|
|
|
rwl->uExclusiveWaiters = 0;
|
|
|
|
rwl->uSharedWaiters = 0;
|
|
|
|
rwl->hOwningThreadId = 0;
|
|
|
|
rwl->dwTimeoutBoost = 0; /* no info on this one, default value is 0 */
|
|
|
|
InitializeCriticalSection( &rwl->rtlCS );
|
1999-02-26 12:11:13 +01:00
|
|
|
rwl->hExclusiveReleaseSemaphore = CreateSemaphoreA( NULL, 0, 65535, NULL );
|
|
|
|
rwl->hSharedReleaseSemaphore = CreateSemaphoreA( NULL, 0, 65535, NULL );
|
1999-01-31 10:24:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* RtlDeleteResource (NTDLL.330)
|
|
|
|
*/
|
|
|
|
void WINAPI RtlDeleteResource(LPRTL_RWLOCK rwl)
|
|
|
|
{
|
|
|
|
if( rwl )
|
|
|
|
{
|
|
|
|
EnterCriticalSection( &rwl->rtlCS );
|
|
|
|
if( rwl->iNumberActive || rwl->uExclusiveWaiters || rwl->uSharedWaiters )
|
1999-05-23 12:25:25 +02:00
|
|
|
MESSAGE("Deleting active MRSW lock (%p), expect failure\n", rwl );
|
1999-01-31 10:24:44 +01:00
|
|
|
rwl->hOwningThreadId = 0;
|
|
|
|
rwl->uExclusiveWaiters = rwl->uSharedWaiters = 0;
|
|
|
|
rwl->iNumberActive = 0;
|
|
|
|
CloseHandle( rwl->hExclusiveReleaseSemaphore );
|
|
|
|
CloseHandle( rwl->hSharedReleaseSemaphore );
|
|
|
|
LeaveCriticalSection( &rwl->rtlCS );
|
|
|
|
DeleteCriticalSection( &rwl->rtlCS );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* RtlAcquireResourceExclusive (NTDLL.256)
|
|
|
|
*/
|
|
|
|
BYTE WINAPI RtlAcquireResourceExclusive(LPRTL_RWLOCK rwl, BYTE fWait)
|
|
|
|
{
|
|
|
|
BYTE retVal = 0;
|
|
|
|
if( !rwl ) return 0;
|
|
|
|
|
|
|
|
start:
|
|
|
|
EnterCriticalSection( &rwl->rtlCS );
|
|
|
|
if( rwl->iNumberActive == 0 ) /* lock is free */
|
|
|
|
{
|
|
|
|
rwl->iNumberActive = -1;
|
|
|
|
retVal = 1;
|
|
|
|
}
|
|
|
|
else if( rwl->iNumberActive < 0 ) /* exclusive lock in progress */
|
|
|
|
{
|
|
|
|
if( rwl->hOwningThreadId == GetCurrentThreadId() )
|
|
|
|
{
|
|
|
|
retVal = 1;
|
|
|
|
rwl->iNumberActive--;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
wait:
|
|
|
|
if( fWait )
|
|
|
|
{
|
|
|
|
rwl->uExclusiveWaiters++;
|
|
|
|
|
|
|
|
LeaveCriticalSection( &rwl->rtlCS );
|
1999-02-26 12:11:13 +01:00
|
|
|
if( WaitForSingleObject( rwl->hExclusiveReleaseSemaphore, INFINITE ) == WAIT_FAILED )
|
1999-01-31 10:24:44 +01:00
|
|
|
goto done;
|
|
|
|
goto start; /* restart the acquisition to avoid deadlocks */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* one or more shared locks are in progress */
|
|
|
|
if( fWait )
|
|
|
|
goto wait;
|
|
|
|
|
|
|
|
if( retVal == 1 )
|
|
|
|
rwl->hOwningThreadId = GetCurrentThreadId();
|
|
|
|
done:
|
|
|
|
LeaveCriticalSection( &rwl->rtlCS );
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* RtlAcquireResourceShared (NTDLL.257)
|
|
|
|
*/
|
|
|
|
BYTE WINAPI RtlAcquireResourceShared(LPRTL_RWLOCK rwl, BYTE fWait)
|
|
|
|
{
|
|
|
|
DWORD dwWait = WAIT_FAILED;
|
|
|
|
BYTE retVal = 0;
|
|
|
|
if( !rwl ) return 0;
|
|
|
|
|
|
|
|
start:
|
|
|
|
EnterCriticalSection( &rwl->rtlCS );
|
|
|
|
if( rwl->iNumberActive < 0 )
|
|
|
|
{
|
|
|
|
if( rwl->hOwningThreadId == GetCurrentThreadId() )
|
|
|
|
{
|
|
|
|
rwl->iNumberActive--;
|
|
|
|
retVal = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fWait )
|
|
|
|
{
|
|
|
|
rwl->uSharedWaiters++;
|
|
|
|
LeaveCriticalSection( &rwl->rtlCS );
|
1999-02-26 12:11:13 +01:00
|
|
|
if( (dwWait = WaitForSingleObject( rwl->hSharedReleaseSemaphore, INFINITE )) == WAIT_FAILED )
|
1999-01-31 10:24:44 +01:00
|
|
|
goto done;
|
|
|
|
goto start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( dwWait != WAIT_OBJECT_0 ) /* otherwise RtlReleaseResource() has already done it */
|
|
|
|
rwl->iNumberActive++;
|
|
|
|
retVal = 1;
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
LeaveCriticalSection( &rwl->rtlCS );
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* RtlReleaseResource (NTDLL.471)
|
|
|
|
*/
|
|
|
|
void WINAPI RtlReleaseResource(LPRTL_RWLOCK rwl)
|
|
|
|
{
|
|
|
|
EnterCriticalSection( &rwl->rtlCS );
|
|
|
|
|
|
|
|
if( rwl->iNumberActive > 0 ) /* have one or more readers */
|
|
|
|
{
|
|
|
|
if( --rwl->iNumberActive == 0 )
|
|
|
|
{
|
|
|
|
if( rwl->uExclusiveWaiters )
|
|
|
|
{
|
|
|
|
wake_exclusive:
|
|
|
|
rwl->uExclusiveWaiters--;
|
|
|
|
ReleaseSemaphore( rwl->hExclusiveReleaseSemaphore, 1, NULL );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if( rwl->iNumberActive < 0 ) /* have a writer, possibly recursive */
|
|
|
|
{
|
|
|
|
if( ++rwl->iNumberActive == 0 )
|
|
|
|
{
|
|
|
|
rwl->hOwningThreadId = 0;
|
|
|
|
if( rwl->uExclusiveWaiters )
|
|
|
|
goto wake_exclusive;
|
|
|
|
else
|
|
|
|
if( rwl->uSharedWaiters )
|
|
|
|
{
|
1999-02-26 12:11:13 +01:00
|
|
|
UINT n = rwl->uSharedWaiters;
|
1999-01-31 10:24:44 +01:00
|
|
|
rwl->iNumberActive = rwl->uSharedWaiters; /* prevent new writers from joining until
|
|
|
|
* all queued readers have done their thing */
|
|
|
|
rwl->uSharedWaiters = 0;
|
|
|
|
ReleaseSemaphore( rwl->hSharedReleaseSemaphore, n, NULL );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LeaveCriticalSection( &rwl->rtlCS );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* RtlDumpResource (NTDLL.340)
|
|
|
|
*/
|
|
|
|
void WINAPI RtlDumpResource(LPRTL_RWLOCK rwl)
|
|
|
|
{
|
|
|
|
if( rwl )
|
|
|
|
{
|
1999-05-23 12:25:25 +02:00
|
|
|
MESSAGE("RtlDumpResource(%p):\n\tactive count = %i\n\twaiting readers = %i\n\twaiting writers = %i\n",
|
1999-01-31 10:24:44 +01:00
|
|
|
rwl, rwl->iNumberActive, rwl->uSharedWaiters, rwl->uExclusiveWaiters );
|
|
|
|
if( rwl->iNumberActive )
|
1999-05-23 12:25:25 +02:00
|
|
|
MESSAGE("\towner thread = %08x\n", rwl->hOwningThreadId );
|
1999-01-31 10:24:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-03-09 18:47:51 +01:00
|
|
|
/*
|
|
|
|
* heap functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlCreateHeap [NTDLL]
|
|
|
|
*/
|
|
|
|
HANDLE WINAPI RtlCreateHeap(
|
|
|
|
ULONG Flags,
|
|
|
|
PVOID BaseAddress,
|
|
|
|
ULONG SizeToReserve,
|
|
|
|
ULONG SizeToCommit,
|
|
|
|
PVOID Unknown,
|
|
|
|
PRTL_HEAP_DEFINITION Definition)
|
|
|
|
{
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08lx, %p, 0x%08lx, 0x%08lx, %p, %p) semi-stub\n",
|
1999-03-09 18:47:51 +01:00
|
|
|
Flags, BaseAddress, SizeToReserve, SizeToCommit, Unknown, Definition);
|
|
|
|
|
|
|
|
return HeapCreate ( Flags, SizeToCommit, SizeToReserve);
|
|
|
|
|
|
|
|
}
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlAllocateHeap [NTDLL]
|
|
|
|
*/
|
|
|
|
PVOID WINAPI RtlAllocateHeap(
|
|
|
|
HANDLE Heap,
|
|
|
|
ULONG Flags,
|
|
|
|
ULONG Size)
|
|
|
|
{
|
- 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
|
|
|
TRACE("(0x%08x, 0x%08lx, 0x%08lx) semi stub\n",
|
1999-03-09 18:47:51 +01:00
|
|
|
Heap, Flags, Size);
|
|
|
|
return HeapAlloc(Heap, Flags, Size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlFreeHeap [NTDLL]
|
|
|
|
*/
|
|
|
|
BOOLEAN WINAPI RtlFreeHeap(
|
|
|
|
HANDLE Heap,
|
|
|
|
ULONG Flags,
|
|
|
|
PVOID Address)
|
|
|
|
{
|
- 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
|
|
|
TRACE("(0x%08x, 0x%08lx, %p) semi stub\n",
|
1999-03-09 18:47:51 +01:00
|
|
|
Heap, Flags, Address);
|
|
|
|
return HeapFree(Heap, Flags, Address);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlDestroyHeap [NTDLL]
|
|
|
|
*
|
|
|
|
* FIXME: prototype guessed
|
|
|
|
*/
|
|
|
|
BOOLEAN WINAPI RtlDestroyHeap(
|
|
|
|
HANDLE Heap)
|
|
|
|
{
|
- 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
|
|
|
TRACE("(0x%08x) semi stub\n", Heap);
|
1999-03-09 18:47:51 +01:00
|
|
|
return HeapDestroy(Heap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* misc functions
|
|
|
|
*/
|
1999-02-19 17:29:05 +01:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DbgPrint [NTDLL]
|
|
|
|
*/
|
1999-07-04 13:05:57 +02:00
|
|
|
void WINAPIV DbgPrint(LPCSTR fmt, ...) {
|
1999-02-19 17:29:05 +01:00
|
|
|
char buf[512];
|
1999-07-04 13:05:57 +02:00
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
wvsprintfA(buf,fmt, args);
|
|
|
|
va_end(args);
|
1999-02-19 17:29:05 +01:00
|
|
|
|
1999-05-23 12:25:25 +02:00
|
|
|
MESSAGE("DbgPrint says: %s",buf);
|
1999-02-19 17:29:05 +01:00
|
|
|
/* hmm, raise exception? */
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlAcquirePebLock [NTDLL]
|
|
|
|
*/
|
|
|
|
VOID WINAPI RtlAcquirePebLock(void) {
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("()\n");
|
1999-02-19 17:29:05 +01:00
|
|
|
/* enter critical section ? */
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlReleasePebLock [NTDLL]
|
|
|
|
*/
|
|
|
|
VOID WINAPI RtlReleasePebLock(void) {
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("()\n");
|
1999-02-19 17:29:05 +01:00
|
|
|
/* leave critical section ? */
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlIntegerToChar [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlIntegerToChar(DWORD x1,DWORD x2,DWORD x3,DWORD x4) {
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4);
|
1999-02-19 17:29:05 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlSetEnvironmentVariable [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlSetEnvironmentVariable(DWORD x1,PUNICODE_STRING key,PUNICODE_STRING val) {
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08lx,%s,%s),stub!\n",x1,debugstr_w(key->Buffer),debugstr_w(val->Buffer));
|
1999-02-19 17:29:05 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlNewSecurityObject [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlNewSecurityObject(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5,DWORD x6) {
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4,x5,x6);
|
1999-02-19 17:29:05 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlDeleteSecurityObject [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlDeleteSecurityObject(DWORD x1) {
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08lx),stub!\n",x1);
|
1999-02-19 17:29:05 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* RtlNormalizeProcessParams [NTDLL.441]
|
|
|
|
*/
|
|
|
|
LPVOID WINAPI RtlNormalizeProcessParams(LPVOID x)
|
|
|
|
{
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(%p), stub\n",x);
|
1999-02-19 17:29:05 +01:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* RtlGetNtProductType [NTDLL.390]
|
|
|
|
*/
|
|
|
|
BOOLEAN WINAPI RtlGetNtProductType(LPDWORD type)
|
|
|
|
{
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(%p): stub\n", type);
|
1999-02-19 17:29:05 +01:00
|
|
|
*type=3; /* dunno. 1 for client, 3 for server? */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* NTDLL_chkstk [NTDLL.862]
|
|
|
|
* NTDLL_alloca_probe [NTDLL.861]
|
|
|
|
* Glorified "enter xxxx".
|
|
|
|
*/
|
1999-11-14 00:54:04 +01:00
|
|
|
void WINAPI NTDLL_chkstk( CONTEXT86 *context )
|
1999-02-19 17:29:05 +01:00
|
|
|
{
|
|
|
|
ESP_reg(context) -= EAX_reg(context);
|
|
|
|
}
|
1999-11-14 00:54:04 +01:00
|
|
|
void WINAPI NTDLL_alloca_probe( CONTEXT86 *context )
|
1999-02-19 17:29:05 +01:00
|
|
|
{
|
|
|
|
ESP_reg(context) -= EAX_reg(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlExtendedLargeIntegerDivide [NTDLL.359]
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
INT WINAPI RtlExtendedLargeIntegerDivide(
|
1999-02-19 17:29:05 +01:00
|
|
|
LARGE_INTEGER dividend,
|
|
|
|
DWORD divisor,
|
|
|
|
LPDWORD rest
|
|
|
|
) {
|
|
|
|
#if SIZEOF_LONG_LONG==8
|
|
|
|
long long x1 = *(long long*)÷nd;
|
|
|
|
|
|
|
|
if (*rest)
|
|
|
|
*rest = x1 % divisor;
|
|
|
|
return x1/divisor;
|
|
|
|
#else
|
2000-01-05 02:42:13 +01:00
|
|
|
FIXME("((%ld<<32)+%ld,%ld,%p), implement this using normal integer arithmetic!\n",
|
|
|
|
dividend.s.HighPart,dividend.s.LowPart,divisor,rest);
|
1999-02-19 17:29:05 +01:00
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2000-03-24 21:46:04 +01:00
|
|
|
* RtlExtendedIntegerMultiply [NTDLL.359]
|
1999-02-19 17:29:05 +01:00
|
|
|
* Note: This even works, since gcc returns 64bit values in eax/edx just like
|
|
|
|
* the caller expects. However... The relay code won't grok this I think.
|
|
|
|
*/
|
1999-09-29 12:27:00 +02:00
|
|
|
LARGE_INTEGER WINAPI RtlExtendedIntegerMultiply(
|
1999-03-09 18:47:51 +01:00
|
|
|
LARGE_INTEGER factor1,
|
|
|
|
INT factor2)
|
|
|
|
{
|
1999-02-19 17:29:05 +01:00
|
|
|
#if SIZEOF_LONG_LONG==8
|
1999-09-29 12:27:00 +02:00
|
|
|
long long result = (*(long long*)&factor1) * factor2;
|
|
|
|
return (*(LARGE_INTEGER*)&result);
|
1999-02-19 17:29:05 +01:00
|
|
|
#else
|
2000-01-05 02:42:13 +01:00
|
|
|
LARGE_INTEGER result;
|
|
|
|
result.s.HighPart = 0;
|
|
|
|
result.s.LowPart = 0;
|
|
|
|
FIXME("((%ld<<32)+%ld,%d), implement this using normal integer arithmetic!\n",
|
|
|
|
factor1.s.HighPart,factor1.s.LowPart,factor2);
|
|
|
|
return result;
|
1999-02-19 17:29:05 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* RtlDosPathNameToNtPathName_U [NTDLL.338]
|
|
|
|
*
|
|
|
|
* FIXME: convert to UNC or whatever is expected here
|
|
|
|
*/
|
|
|
|
BOOLEAN WINAPI RtlDosPathNameToNtPathName_U(
|
|
|
|
LPWSTR from,PUNICODE_STRING us,DWORD x2,DWORD x3)
|
|
|
|
{
|
|
|
|
LPSTR fromA = HEAP_strdupWtoA(GetProcessHeap(),0,from);
|
|
|
|
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(%s,%p,%08lx,%08lx)\n",fromA,us,x2,x3);
|
1999-02-19 17:29:05 +01:00
|
|
|
if (us)
|
|
|
|
RtlInitUnicodeString(us,HEAP_strdupW(GetProcessHeap(),0,from));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlCreateEnvironment [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlCreateEnvironment(DWORD x1,DWORD x2) {
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08lx,0x%08lx),stub!\n",x1,x2);
|
1999-02-19 17:29:05 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlDestroyEnvironment [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlDestroyEnvironment(DWORD x) {
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08lx),stub!\n",x);
|
1999-02-19 17:29:05 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlQueryEnvironmentVariable_U [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlQueryEnvironmentVariable_U(DWORD x1,PUNICODE_STRING key,PUNICODE_STRING val) {
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("(0x%08lx,%s,%p),stub!\n",x1,debugstr_w(key->Buffer),val);
|
1999-02-19 17:29:05 +01:00
|
|
|
return 0;
|
|
|
|
}
|
- 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
|
|
|
/******************************************************************************
|
|
|
|
* RtlInitializeGenericTable [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlInitializeGenericTable(void)
|
|
|
|
{
|
|
|
|
FIXME("\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlInitializeBitMap [NTDLL]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI RtlInitializeBitMap(DWORD x1,DWORD x2,DWORD x3)
|
|
|
|
{
|
|
|
|
FIXME("(0x%08lx,0x%08lx,0x%08lx),stub\n",x1,x2,x3);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlSetBits [NTDLL]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI RtlSetBits(DWORD x1,DWORD x2,DWORD x3)
|
|
|
|
{
|
|
|
|
FIXME("(0x%08lx,0x%08lx,0x%08lx),stub\n",x1,x2,x3);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlFindClearBits [NTDLL]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI RtlFindClearBits(DWORD x1,DWORD x2,DWORD x3)
|
|
|
|
{
|
|
|
|
FIXME("(0x%08lx,0x%08lx,0x%08lx),stub\n",x1,x2,x3);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlClearBits [NTDLL]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NTSTATUS WINAPI RtlClearBits(DWORD x1,DWORD x2,DWORD x3)
|
|
|
|
{
|
|
|
|
FIXME("(0x%08lx,0x%08lx,0x%08lx),stub\n",x1,x2,x3);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-02-26 20:35:50 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* RtlCopyMemory [NTDLL]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#undef RtlCopyMemory
|
|
|
|
VOID WINAPI RtlCopyMemory( VOID *Destination, CONST VOID *Source, SIZE_T Length )
|
|
|
|
{
|
|
|
|
memcpy(Destination, Source, Length);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlMoveMemory [NTDLL]
|
|
|
|
*/
|
|
|
|
#undef RtlMoveMemory
|
|
|
|
VOID WINAPI RtlMoveMemory( VOID *Destination, CONST VOID *Source, SIZE_T Length )
|
|
|
|
{
|
|
|
|
memmove(Destination, Source, Length);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlFillMemory [NTDLL]
|
|
|
|
*/
|
|
|
|
#undef RtlFillMemory
|
|
|
|
VOID WINAPI RtlFillMemory( VOID *Destination, SIZE_T Length, BYTE Fill )
|
|
|
|
{
|
|
|
|
memset(Destination, Fill, Length);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlZeroMemory [NTDLL]
|
|
|
|
*/
|
|
|
|
#undef RtlZeroMemory
|
|
|
|
VOID WINAPI RtlZeroMemory( VOID *Destination, SIZE_T Length )
|
|
|
|
{
|
|
|
|
memset(Destination, 0, Length);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlCompareMemory [NTDLL]
|
|
|
|
*/
|
|
|
|
SIZE_T WINAPI RtlCompareMemory( const VOID *Source1, const VOID *Source2, SIZE_T Length)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i=0; (i<Length) && (((LPBYTE)Source1)[i]==((LPBYTE)Source2)[i]); i++);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2000-02-20 14:47:28 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* RtlAssert [NTDLL]
|
|
|
|
*
|
|
|
|
* Not implemented in non-debug versions.
|
|
|
|
*/
|
|
|
|
void WINAPI RtlAssert(LPVOID x1,LPVOID x2,DWORD x3, DWORD x4)
|
|
|
|
{
|
|
|
|
FIXME("(%p,%p,0x%08lx,0x%08lx),stub\n",x1,x2,x3,x4);
|
|
|
|
}
|