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 19:45:59 +00:00
|
|
|
/*
|
|
|
|
* NT basis DLL
|
|
|
|
*
|
1998-11-01 14:00:21 +00:00
|
|
|
* This file contains the Rtl* API functions. These should be implementable.
|
|
|
|
*
|
|
|
|
* Copyright 1996-1998 Marcus Meissner
|
1999-01-31 09:24:44 +00: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 19:45:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1999-02-19 16:29:05 +00:00
|
|
|
#include "heap.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "stackframe.h"
|
|
|
|
|
1999-03-09 17:47:51 +00:00
|
|
|
#include "ntddk.h"
|
1998-10-16 14:28:45 +00: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 19:45:59 +00:00
|
|
|
|
1999-02-17 13:51:06 +00:00
|
|
|
|
1999-03-09 17:47:51 +00: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 19:43:45 +00:00
|
|
|
*/
|
1997-02-15 14:29:56 +00:00
|
|
|
|
1999-01-31 09:24:44 +00: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 11:11:13 +00:00
|
|
|
rwl->hExclusiveReleaseSemaphore = CreateSemaphoreA( NULL, 0, 65535, NULL );
|
|
|
|
rwl->hSharedReleaseSemaphore = CreateSemaphoreA( NULL, 0, 65535, NULL );
|
1999-01-31 09:24:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* RtlDeleteResource (NTDLL.330)
|
|
|
|
*/
|
|
|
|
void WINAPI RtlDeleteResource(LPRTL_RWLOCK rwl)
|
|
|
|
{
|
|
|
|
if( rwl )
|
|
|
|
{
|
|
|
|
EnterCriticalSection( &rwl->rtlCS );
|
|
|
|
if( rwl->iNumberActive || rwl->uExclusiveWaiters || rwl->uSharedWaiters )
|
|
|
|
MSG("Deleting active MRSW lock (%p), expect failure\n", rwl );
|
|
|
|
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 11:11:13 +00:00
|
|
|
if( WaitForSingleObject( rwl->hExclusiveReleaseSemaphore, INFINITE ) == WAIT_FAILED )
|
1999-01-31 09:24:44 +00: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 11:11:13 +00:00
|
|
|
if( (dwWait = WaitForSingleObject( rwl->hSharedReleaseSemaphore, INFINITE )) == WAIT_FAILED )
|
1999-01-31 09:24:44 +00: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 11:11:13 +00:00
|
|
|
UINT n = rwl->uSharedWaiters;
|
1999-01-31 09:24:44 +00: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 )
|
|
|
|
{
|
|
|
|
MSG("RtlDumpResource(%p):\n\tactive count = %i\n\twaiting readers = %i\n\twaiting writers = %i\n",
|
|
|
|
rwl, rwl->iNumberActive, rwl->uSharedWaiters, rwl->uExclusiveWaiters );
|
|
|
|
if( rwl->iNumberActive )
|
|
|
|
MSG("\towner thread = %08x\n", rwl->hOwningThreadId );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-03-09 17:47:51 +00:00
|
|
|
/*
|
|
|
|
* heap functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlCreateHeap [NTDLL]
|
|
|
|
*/
|
|
|
|
HANDLE WINAPI RtlCreateHeap(
|
|
|
|
ULONG Flags,
|
|
|
|
PVOID BaseAddress,
|
|
|
|
ULONG SizeToReserve,
|
|
|
|
ULONG SizeToCommit,
|
|
|
|
PVOID Unknown,
|
|
|
|
PRTL_HEAP_DEFINITION Definition)
|
|
|
|
{
|
|
|
|
FIXME (ntdll,"(0x%08lx, %p, 0x%08lx, 0x%08lx, %p, %p) semi-stub\n",
|
|
|
|
Flags, BaseAddress, SizeToReserve, SizeToCommit, Unknown, Definition);
|
|
|
|
|
|
|
|
return HeapCreate ( Flags, SizeToCommit, SizeToReserve);
|
|
|
|
|
|
|
|
}
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlAllocateHeap [NTDLL]
|
|
|
|
*/
|
|
|
|
PVOID WINAPI RtlAllocateHeap(
|
|
|
|
HANDLE Heap,
|
|
|
|
ULONG Flags,
|
|
|
|
ULONG Size)
|
|
|
|
{
|
|
|
|
FIXME(ntdll,"(0x%08x, 0x%08lx, 0x%08lx) semi stub\n",
|
|
|
|
Heap, Flags, Size);
|
|
|
|
return HeapAlloc(Heap, Flags, Size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlFreeHeap [NTDLL]
|
|
|
|
*/
|
|
|
|
BOOLEAN WINAPI RtlFreeHeap(
|
|
|
|
HANDLE Heap,
|
|
|
|
ULONG Flags,
|
|
|
|
PVOID Address)
|
|
|
|
{
|
|
|
|
FIXME(ntdll,"(0x%08x, 0x%08lx, %p) semi stub\n",
|
|
|
|
Heap, Flags, Address);
|
|
|
|
return HeapFree(Heap, Flags, Address);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlDestroyHeap [NTDLL]
|
|
|
|
*
|
|
|
|
* FIXME: prototype guessed
|
|
|
|
*/
|
|
|
|
BOOLEAN WINAPI RtlDestroyHeap(
|
|
|
|
HANDLE Heap)
|
|
|
|
{
|
|
|
|
FIXME(ntdll,"(0x%08x) semi stub\n", Heap);
|
|
|
|
return HeapDestroy(Heap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* misc functions
|
|
|
|
*/
|
1999-02-19 16:29:05 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* DbgPrint [NTDLL]
|
|
|
|
*/
|
|
|
|
void __cdecl DbgPrint(LPCSTR fmt,LPVOID args) {
|
|
|
|
char buf[512];
|
|
|
|
|
1999-02-26 11:11:13 +00:00
|
|
|
wvsprintfA(buf,fmt,&args);
|
1999-02-19 16:29:05 +00:00
|
|
|
MSG("DbgPrint says: %s",buf);
|
|
|
|
/* hmm, raise exception? */
|
|
|
|
}
|
|
|
|
DWORD NtRaiseException ( DWORD dwExceptionCode, DWORD dwExceptionFlags, DWORD nNumberOfArguments,CONST ULONG_PTR *lpArguments)
|
|
|
|
{ FIXME(ntdll,"0x%08lx 0x%08lx 0x%08lx %p\n", dwExceptionCode, dwExceptionFlags, nNumberOfArguments, lpArguments);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD RtlRaiseException ( DWORD x)
|
|
|
|
{ FIXME(ntdll, "0x%08lx\n", x);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlAcquirePebLock [NTDLL]
|
|
|
|
*/
|
|
|
|
VOID WINAPI RtlAcquirePebLock(void) {
|
|
|
|
FIXME(ntdll,"()\n");
|
|
|
|
/* enter critical section ? */
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlReleasePebLock [NTDLL]
|
|
|
|
*/
|
|
|
|
VOID WINAPI RtlReleasePebLock(void) {
|
|
|
|
FIXME(ntdll,"()\n");
|
|
|
|
/* leave critical section ? */
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlIntegerToChar [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlIntegerToChar(DWORD x1,DWORD x2,DWORD x3,DWORD x4) {
|
|
|
|
FIXME(ntdll,"(0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlSetEnvironmentVariable [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlSetEnvironmentVariable(DWORD x1,PUNICODE_STRING key,PUNICODE_STRING val) {
|
|
|
|
FIXME(ntdll,"(0x%08lx,%s,%s),stub!\n",x1,debugstr_w(key->Buffer),debugstr_w(val->Buffer));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlNewSecurityObject [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlNewSecurityObject(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5,DWORD x6) {
|
|
|
|
FIXME(ntdll,"(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4,x5,x6);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlDeleteSecurityObject [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlDeleteSecurityObject(DWORD x1) {
|
|
|
|
FIXME(ntdll,"(0x%08lx),stub!\n",x1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* RtlNormalizeProcessParams [NTDLL.441]
|
|
|
|
*/
|
|
|
|
LPVOID WINAPI RtlNormalizeProcessParams(LPVOID x)
|
|
|
|
{
|
|
|
|
FIXME(ntdll,"(%p), stub\n",x);
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* RtlNtStatusToDosError [NTDLL.442]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlNtStatusToDosError(DWORD error)
|
|
|
|
{
|
|
|
|
FIXME(ntdll, "(%lx): map STATUS_ to ERROR_\n",error);
|
|
|
|
switch (error)
|
|
|
|
{ case STATUS_SUCCESS: return ERROR_SUCCESS;
|
|
|
|
case STATUS_INVALID_PARAMETER: return ERROR_BAD_ARGUMENTS;
|
|
|
|
case STATUS_BUFFER_TOO_SMALL: return ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
/* case STATUS_INVALID_SECURITY_DESCR: return ERROR_INVALID_SECURITY_DESCR;*/
|
|
|
|
case STATUS_NO_MEMORY: return ERROR_NOT_ENOUGH_MEMORY;
|
|
|
|
/* case STATUS_UNKNOWN_REVISION:
|
|
|
|
case STATUS_BUFFER_OVERFLOW:*/
|
|
|
|
}
|
|
|
|
FIXME(ntdll, "unknown status (%lx)\n",error);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* RtlGetNtProductType [NTDLL.390]
|
|
|
|
*/
|
|
|
|
BOOLEAN WINAPI RtlGetNtProductType(LPDWORD type)
|
|
|
|
{
|
|
|
|
FIXME(ntdll, "(%p): stub\n", type);
|
|
|
|
*type=3; /* dunno. 1 for client, 3 for server? */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* NTDLL_chkstk [NTDLL.862]
|
|
|
|
* NTDLL_alloca_probe [NTDLL.861]
|
|
|
|
* Glorified "enter xxxx".
|
|
|
|
*/
|
|
|
|
REGS_ENTRYPOINT(NTDLL_chkstk)
|
|
|
|
{
|
|
|
|
ESP_reg(context) -= EAX_reg(context);
|
|
|
|
}
|
|
|
|
REGS_ENTRYPOINT(NTDLL_alloca_probe)
|
|
|
|
{
|
|
|
|
ESP_reg(context) -= EAX_reg(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlExtendedLargeIntegerDivide [NTDLL.359]
|
|
|
|
*/
|
1999-02-26 11:11:13 +00:00
|
|
|
INT WINAPI RtlExtendedLargeIntegerDivide(
|
1999-02-19 16:29:05 +00: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
|
|
|
|
FIXME(ntdll,"((%d<<32)+%d,%d,%p), implement this using normal integer arithmetic!\n",dividend.HighPart,dividend.LowPart,divisor,rest);
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlExtendedLargeIntegerMultiply [NTDLL.359]
|
|
|
|
* 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-03-09 17:47:51 +00:00
|
|
|
long long WINAPI RtlExtendedIntegerMultiply(
|
|
|
|
LARGE_INTEGER factor1,
|
|
|
|
INT factor2)
|
|
|
|
{
|
1999-02-19 16:29:05 +00:00
|
|
|
#if SIZEOF_LONG_LONG==8
|
1999-03-09 17:47:51 +00:00
|
|
|
return (*(long long*)&factor1) * factor2;
|
1999-02-19 16:29:05 +00:00
|
|
|
#else
|
|
|
|
FIXME(ntdll,"((%d<<32)+%d,%ld), implement this using normal integer arithmetic!\n",factor1.HighPart,factor1.LowPart,factor2);
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlFormatCurrentUserKeyPath [NTDLL.371]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlFormatCurrentUserKeyPath(DWORD x)
|
|
|
|
{
|
|
|
|
FIXME(ntdll,"(0x%08lx): stub\n",x);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlOpenCurrentUser [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlOpenCurrentUser(DWORD x1, DWORD *x2)
|
|
|
|
{
|
|
|
|
/* Note: this is not the correct solution,
|
|
|
|
* But this works pretty good on wine and NT4.0 binaries
|
|
|
|
*/
|
|
|
|
if ( x1 == 0x2000000 ) {
|
|
|
|
*x2 = HKEY_CURRENT_USER;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
/**************************************************************************
|
|
|
|
* 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);
|
|
|
|
|
|
|
|
FIXME(ntdll,"(%s,%p,%08lx,%08lx)\n",fromA,us,x2,x3);
|
|
|
|
if (us)
|
|
|
|
RtlInitUnicodeString(us,HEAP_strdupW(GetProcessHeap(),0,from));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlCreateEnvironment [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlCreateEnvironment(DWORD x1,DWORD x2) {
|
|
|
|
FIXME(ntdll,"(0x%08lx,0x%08lx),stub!\n",x1,x2);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlDestroyEnvironment [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlDestroyEnvironment(DWORD x) {
|
|
|
|
FIXME(ntdll,"(0x%08lx),stub!\n",x);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* RtlQueryEnvironmentVariable_U [NTDLL]
|
|
|
|
*/
|
|
|
|
DWORD WINAPI RtlQueryEnvironmentVariable_U(DWORD x1,PUNICODE_STRING key,PUNICODE_STRING val) {
|
|
|
|
FIXME(ntdll,"(0x%08lx,%s,%p),stub!\n",x1,debugstr_w(key->Buffer),val);
|
|
|
|
return 0;
|
|
|
|
}
|