Release 970112
Sat Jan 11 18:17:59 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [controls/menu.c]
Updated to new Win32 types.
* [controls/listbox.c]
Fixed Winfile extended selection bug.
* [files/directory.c]
Changed DIR_SearchPath to return both long and short file names.
* [files/dos_fs.c]
Implemented VFAT ioctl to retrieve the original short filenames
from a VFAT filesystem (Linux only for now).
Replaced DOSFS_GetUnixFileName()/DOSFS_GetDosTrueName() by
DOS_GetFullName().
Properly implemented GetShortPathName() and GetFullPathName().
Made all functions re-entrant.
* [files/file.c] [misc/main.c]
Replaced -allowreadonly option by -failreadonly. The default is
now to report success when opening a read-only file for writing.
* [objects/metafile.c]
Fixed bug in DIB bitmaps pointer calculation.
* [scheduler/process.c]
Implemented environment strings and Get/SetStdHandle with process
environment block.
* [tools/build.c]
Rewrote BuildContext32() to avoid instructions that may not be
supported by all assemblers.
Fri Jan 10 17:11:09 1997 David Faure <david.faure@ifhamy.insa-lyon.fr>
* [windows/event.c]
Created table keyc2vkey, which associate a vkey(+extended bit) to
any keycode. Changed EVENT_event_to_vkey to use this table to
return the correct vkey. Changed EVENT_ToAscii to get the keycode
from this table too. Assigned OEM specific vkeys arbitrarily.
Fri Jan 10 09:26:17 1997 John Harvey <john@division.co.uk>
* [misc/winsock.c] [misc/winsoc_async.c]
Fixed svr4 header files.
Changed bzero() to memset().
* [tools/fnt2bdf.c]
Removed bcopy() and used memcpy() instead.
* [debugger/msc.c]
Include string.h instead of strings.h
* [debugger/stabs.c]
Include string.h instead of strings.h.
Define __ELF__ for svr4 systems.
* [loader/signal.c]
Use wait() instead of wait4() which doesnt exist on Unixware.
* [memory/global.c]
Use sysconf() instead of getpagesize() for svr4 systems.
Thu Jan 9 21:07:20 1997 Robert Pouliot <krynos@clic.net>
* [Make.rules.in] [Makefile.in] [make_os2.sh] [rc/Makefile.in]
[tools/Makefile.in] [documentation/wine_os2.txt]
Patches for OS/2 support. Note that it doesn't compile yet.
Tue Jan 7 20:03:53 1997 Eric Youngdale <eric@sub2304.jic.com>
* [debugger/*]
Many more debugger improvements (see debugger/README for details).
Tue Jan 7 15:12:21 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [windows/graphics.c] [objects/text.c] [graphics/x11drv/*]
[graphics/metafiledrv/*]
Moved some device dependent code into the resp. subdirs.
* [include/gdi.h] [include/metafiledrv.h] [include/x11drv.h]
Prototypes added,
DC_FUNCTIONS: GetPixel added, some unnecessary functions removed.
* [objects/region.c]
CreatePolyPolygonRgn32 added.
* [files/dos_fs.c]
QueryDosDevice added.
* [misc/lstr.c]
FormatMessage: broken heap management fixed.
* [scheduler/process.c] [scheduler/thread.c]
Get/SetThreadPriority/PriorityClass added.
Mon Jan 6 21:55:30 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [misc/keyboard.c]
ToAscii : Use EVENT_ToAscii instead.
* [windows/event.c]
keypad_key : Do not convert XK_Mode_switch to VK_MENU; recognize
keypad cursor keys.
EVENT_event_to_vkey : New function, to transform a X keycode
into a MSwin vkey + extended bit.
EVENT_ToAscii : New function, to transform a vkey + extended bit
(+ key state table) into ascii char(s), using XLookupString, and
recognizing dead chars.
EVENT_key : Transform AltGr into Ctrl+Alt sequence; call
EVENT_event_to_vkey for keycode to vkey conversion; fixed
previous, context and extended bits.
* [windows/keyboard.c]
Include stddebug.h, to get -debugmsg messages.
GetKeyState : Handle VK_MBUTTON case.
GetKeyboardState, SetKeyboardState : Debugging messages added.
* [windows/message.c]
TranslateMessage : Handle dead chars.
Mon Jan 6 20:10:11 1997 Dominik Strasser <bm424953@muenchen.org>
* [if1632/crtdll.spec] [misc/crtdll.c]
C++ functions new/delete/set_new_handler implemented.
Mon Jan 6 15:48:15 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c] [include/windows.h]
Moved the edit control to 32 bits.
Included new (win95) message definitions in windows.h
Implemented EM_SCROLLCARET, EM_SETMARGINS, EM_GETMARGINS,
EM_GETLIMITTEXT, EM_POSFROMCHAR, EM_CHARFROMPOS.
Broke EM_SETWORDBREAKPROC (internal wordwrap still works).
Fixed some bugs, introduced a couple of others.
Text buffer is now initially in 32-bit heap.
* [controls/EDIT.TODO] [controls/combo.c] [controls/widgets.c]
[if1632/wprocs.spec] [library/miscstubs.c] [windows/defdlg.c]
[misc/commdlg.c]
Updated to work with 32-bit edit control.
Sat Jan 4 22:07:27 1997 O.Flebbe <O.Flebbe@science-computing.uni-tuebingen.de>
* [loader/pe_image.c]
Use mmap rather then malloc. Better workaround for clean
segments.
1997-01-12 18:32:19 +00:00
|
|
|
#ifndef __WINE_CRTDLL_H
|
|
|
|
#define __WINE_CRTDLL_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
|
|
|
|
2000-11-08 22:42:53 +00:00
|
|
|
#include "config.h"
|
1999-06-26 14:58:24 +00:00
|
|
|
#include "windef.h"
|
2000-11-08 22:42:53 +00:00
|
|
|
#include "wine/windef16.h"
|
|
|
|
#include "debugtools.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
#include <time.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
|
1999-06-26 14:58:24 +00:00
|
|
|
|
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
|
|
|
#define CRTDLL_LC_ALL 0
|
|
|
|
#define CRTDLL_LC_COLLATE 1
|
|
|
|
#define CRTDLL_LC_CTYPE 2
|
|
|
|
#define CRTDLL_LC_MONETARY 3
|
|
|
|
#define CRTDLL_LC_NUMERIC 4
|
|
|
|
#define CRTDLL_LC_TIME 5
|
2000-12-12 00:37:27 +00:00
|
|
|
#define CRTDLL_LC_MIN CRTDLL_LC_ALL
|
|
|
|
#define CRTDLL_LC_MAX CRTDLL_LC_TIME
|
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
|
|
|
|
1997-02-02 19:01:52 +00:00
|
|
|
/* ctype defines */
|
2000-12-12 00:37:27 +00:00
|
|
|
#define CRTDLL_UPPER C1_UPPER
|
|
|
|
#define CRTDLL_LOWER C1_LOWER
|
|
|
|
#define CRTDLL_DIGIT C1_DIGIT
|
|
|
|
#define CRTDLL_SPACE C1_SPACE
|
|
|
|
#define CRTDLL_PUNCT C1_PUNCT
|
|
|
|
#define CRTDLL_CONTROL C1_CNTRL
|
|
|
|
#define CRTDLL_BLANK C1_BLANK
|
|
|
|
#define CRTDLL_HEX C1_XDIGIT
|
1997-02-02 19:01:52 +00:00
|
|
|
#define CRTDLL_LEADBYTE 0x8000
|
2000-12-12 00:37:27 +00:00
|
|
|
#define CRTDLL_ALPHA (C1_ALPHA|CRTDLL_UPPER|CRTDLL_LOWER)
|
1997-02-02 19:01:52 +00:00
|
|
|
|
2000-11-08 22:42:53 +00:00
|
|
|
/* stat() mode bits */
|
|
|
|
#define _S_IFMT 0170000
|
|
|
|
#define _S_IFREG 0100000
|
|
|
|
#define _S_IFDIR 0040000
|
|
|
|
#define _S_IFCHR 0020000
|
|
|
|
#define _S_IFIFO 0010000
|
|
|
|
#define _S_IREAD 0000400
|
|
|
|
#define _S_IWRITE 0000200
|
|
|
|
#define _S_IEXEC 0000100
|
|
|
|
|
|
|
|
/* _open modes */
|
|
|
|
#define _O_RDONLY 0x0000
|
|
|
|
#define _O_WRONLY 0x0001
|
|
|
|
#define _O_RDWR 0x0002
|
|
|
|
#define _O_APPEND 0x0008
|
|
|
|
#define _O_CREAT 0x0100
|
|
|
|
#define _O_TRUNC 0x0200
|
|
|
|
#define _O_EXCL 0x0400
|
|
|
|
#define _O_TEXT 0x4000
|
|
|
|
#define _O_BINARY 0x8000
|
|
|
|
|
2000-12-13 01:58:39 +00:00
|
|
|
#define _O_TEMPORARY 0x0040 /* Will be closed and deleted on exit */
|
|
|
|
|
2000-11-08 22:42:53 +00:00
|
|
|
/* _access() bit flags FIXME: incomplete */
|
|
|
|
#define W_OK 2
|
|
|
|
|
|
|
|
/* windows.h RAND_MAX is smaller than normal RAND_MAX */
|
|
|
|
#define CRTDLL_RAND_MAX 0x7fff
|
|
|
|
|
2000-11-15 23:11:38 +00:00
|
|
|
/* heap function constants */
|
|
|
|
#define _HEAPEMPTY -1
|
|
|
|
#define _HEAPOK -2
|
|
|
|
#define _HEAPBADBEGIN -3
|
|
|
|
#define _HEAPBADNODE -4
|
|
|
|
#define _HEAPEND -5
|
|
|
|
#define _HEAPBADPTR -6
|
|
|
|
#define _FREEENTRY 0
|
|
|
|
#define _USEDENTRY 1
|
|
|
|
|
2000-11-25 02:11:59 +00:00
|
|
|
/* fpclass constants */
|
|
|
|
#define _FPCLASS_SNAN 1
|
|
|
|
#define _FPCLASS_QNAN 2
|
|
|
|
#define _FPCLASS_NINF 4
|
|
|
|
#define _FPCLASS_NN 8
|
|
|
|
#define _FPCLASS_ND 16
|
|
|
|
#define _FPCLASS_NZ 32
|
|
|
|
#define _FPCLASS_PZ 64
|
|
|
|
#define _FPCLASS_PD 128
|
|
|
|
#define _FPCLASS_PN 256
|
|
|
|
#define _FPCLASS_PINF 512
|
|
|
|
|
2000-11-25 21:39:03 +00:00
|
|
|
/* _statusfp bit flags */
|
|
|
|
#define _SW_INEXACT 0x1
|
|
|
|
#define _SW_UNDERFLOW 0x2
|
|
|
|
#define _SW_OVERFLOW 0x4
|
|
|
|
#define _SW_ZERODIVIDE 0x8
|
|
|
|
#define _SW_INVALID 0x10
|
|
|
|
#define _SW_DENORMAL 0x80000
|
|
|
|
|
|
|
|
/* _controlfp masks and bitflags - x86 only so far*/
|
|
|
|
#ifdef __i386__
|
|
|
|
#define _MCW_EM 0x8001f
|
|
|
|
#define _EM_INEXACT 0x1
|
|
|
|
#define _EM_UNDERFLOW 0x2
|
|
|
|
#define _EM_OVERFLOW 0x4
|
|
|
|
#define _EM_ZERODIVIDE 0x8
|
|
|
|
#define _EM_INVALID 0x10
|
|
|
|
|
|
|
|
#define _MCW_RC 0x300
|
|
|
|
#define _RC_NEAR 0x0
|
|
|
|
#define _RC_DOWN 0x100
|
|
|
|
#define _RC_UP 0x200
|
|
|
|
#define _RC_CHOP 0x300
|
|
|
|
|
|
|
|
#define _MCW_PC 0x30000
|
|
|
|
#define _PC_64 0x0
|
|
|
|
#define _PC_53 0x10000
|
|
|
|
#define _PC_24 0x20000
|
|
|
|
|
|
|
|
#define _MCW_IC 0x40000
|
|
|
|
#define _IC_AFFINE 0x40000
|
|
|
|
#define _IC_PROJECTIVE 0x0
|
|
|
|
|
|
|
|
#define _EM_DENORMAL 0x80000
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2000-11-08 22:42:53 +00:00
|
|
|
/* CRTDLL Globals */
|
|
|
|
extern INT CRTDLL_doserrno;
|
|
|
|
extern INT CRTDLL_errno;
|
|
|
|
|
|
|
|
|
2000-12-02 20:18:08 +00:00
|
|
|
/* Binary compatible structures, types and defines used
|
2000-11-08 22:42:53 +00:00
|
|
|
* by CRTDLL. These should move to external header files,
|
2000-12-02 20:18:08 +00:00
|
|
|
* and in some cases need to be renamed (CRTDLL_FILE!) to defs
|
2000-11-08 22:42:53 +00:00
|
|
|
* as used by lcc/bcc/watcom/vc++ etc, in order to get source
|
2000-12-02 20:18:08 +00:00
|
|
|
* compatibility for winelib.
|
2000-11-08 22:42:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _crtfile
|
|
|
|
{
|
|
|
|
CHAR* _ptr;
|
|
|
|
INT _cnt;
|
|
|
|
CHAR* _base;
|
|
|
|
INT _flag;
|
|
|
|
INT _file; /* fd */
|
|
|
|
int _charbuf;
|
|
|
|
int _bufsiz;
|
|
|
|
char *_tmpfname;
|
|
|
|
} CRTDLL_FILE;
|
|
|
|
|
|
|
|
/* file._flag flags */
|
|
|
|
#define _IOREAD 0x0001
|
|
|
|
#define _IOWRT 0x0002
|
|
|
|
#define _IOEOF 0x0010
|
|
|
|
#define _IOERR 0x0020
|
|
|
|
#define _IORW 0x0080
|
|
|
|
#define _IOAPPEND 0x0200
|
|
|
|
|
|
|
|
#define SEEK_SET 0
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
#define SEEK_END 2
|
|
|
|
|
2000-12-16 21:53:56 +00:00
|
|
|
#define CRTDLL_EOF -1
|
|
|
|
#define CRTDLL_WEOF (WCHAR)(0xFFFF)
|
2000-11-08 22:42:53 +00:00
|
|
|
|
|
|
|
extern CRTDLL_FILE __CRTDLL_iob[3];
|
|
|
|
|
|
|
|
#define CRTDLL_stdin (&__CRTDLL_iob[0])
|
|
|
|
#define CRTDLL_stdout (&__CRTDLL_iob[1])
|
|
|
|
#define CRTDLL_stderr (&__CRTDLL_iob[2])
|
|
|
|
|
|
|
|
typedef struct _find_t
|
|
|
|
{
|
|
|
|
unsigned attrib;
|
|
|
|
time_t time_create; /* -1 when N/A */
|
|
|
|
time_t time_access; /* -1 when N/A */
|
|
|
|
time_t time_write;
|
|
|
|
unsigned long size; /* FIXME: 64 bit ??*/
|
|
|
|
char name[MAX_PATH];
|
|
|
|
} find_t;
|
|
|
|
|
|
|
|
typedef struct _diskfree_t {
|
|
|
|
unsigned num_clusters;
|
|
|
|
unsigned available;
|
|
|
|
unsigned cluster_sectors;
|
|
|
|
unsigned sector_bytes;
|
|
|
|
} diskfree_t;
|
|
|
|
|
|
|
|
struct _stat
|
|
|
|
{
|
|
|
|
UINT16 st_dev;
|
|
|
|
UINT16 st_ino;
|
|
|
|
UINT16 st_mode;
|
|
|
|
INT16 st_nlink;
|
|
|
|
INT16 st_uid;
|
|
|
|
INT16 st_gid;
|
|
|
|
UINT st_rdev;
|
|
|
|
INT st_size;
|
|
|
|
INT st_atime;
|
|
|
|
INT st_mtime;
|
|
|
|
INT st_ctime;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _timeb
|
|
|
|
{
|
|
|
|
time_t time;
|
|
|
|
UINT16 millitm;
|
|
|
|
INT16 timezone;
|
|
|
|
INT16 dstflag;
|
|
|
|
};
|
|
|
|
|
2000-12-13 01:59:40 +00:00
|
|
|
typedef long CRTDLL_fpos_t;
|
2000-11-08 22:42:53 +00:00
|
|
|
|
|
|
|
struct complex
|
|
|
|
{
|
|
|
|
double real;
|
|
|
|
double imaginary;
|
|
|
|
};
|
|
|
|
|
2000-11-15 23:11:38 +00:00
|
|
|
typedef struct _heapinfo
|
|
|
|
{
|
|
|
|
int * _pentry;
|
|
|
|
size_t _size;
|
|
|
|
int _useflag;
|
|
|
|
} _HEAPINFO;
|
|
|
|
|
2000-11-25 02:11:59 +00:00
|
|
|
struct _utimbuf
|
|
|
|
{
|
|
|
|
time_t actime;
|
|
|
|
time_t modtime;
|
|
|
|
};
|
|
|
|
|
2000-11-25 21:39:03 +00:00
|
|
|
/* _matherr exception type */
|
|
|
|
struct _exception
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
char *name;
|
|
|
|
double arg1;
|
|
|
|
double arg2;
|
|
|
|
double retval;
|
|
|
|
};
|
|
|
|
|
2000-11-08 22:42:53 +00:00
|
|
|
typedef VOID (*sig_handler_type)(VOID);
|
|
|
|
|
|
|
|
typedef VOID (*new_handler_type)(VOID);
|
Release 980601
Sun May 31 13:40:13 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [if1632/signal.c]
Added display of exception name.
* [loader/task.c]
Yet another attempt at fixing SwitchStackTo/SwitchStackBack.
* [memory/selector.c] [relay32/builtin32.c] [tools/build.c]
[win32/kernel32.c]
Generate an assembly stub for Win32 register functions to make
their names available at link time.
* [programs/*/Makefile.in]
Added hacks to support old resource compiler.
Fri May 29 16:27:14 1998 Marcus Meissner <marcus@jet.franken.de>
* [tools/testrun]
Merge of my testscripts at home into one single perl program
(tested with perl5). Works only on Linux due to 'ps' and 'ipcs'
magic.
* [controls/menu.c]
Added some DefaultMenuItem stubs.
* [debugger/stabs.c]
Fixed stabs loading, now supports (int,int) typeinfo format used
by gcc-2.8 and egcs-1. If it still crashes, please mail me.
* [if1632/][relay32/]
Added msvideo.dll (stubs only)
Replaced some ptr by str for stringcases
Added some new stubs (VxDCall, FindCloseNotif....)
* [misc/network.c]
Some argument fixes.
* [misc/registry.c][misc/cpu.c]
Registry initialization partially rewritten and enhanced.
* [scheduler/*.c]
Some additions so we don't do kill(0,SIGUSR1) (kill processgroup
instead of targeted thread)
Added SetThreadContext.
Thu May 28 23:59:59 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [tools/wrc/*]
New resource compiler version 1.0.0 (28-May-1998)
* [Make.rules.in] [Makefile.in]
Changed and added rc rules to point to tools/wrc/wrc.
* [configure.in] [include/config.h.in]
Added check for function 'stricmp'.
* [include/resource.h]
Commented out the old resource structure to catch references.
It also includes wrc_rsc.h.
* [include/wrc_rsc.h]
New file. Definitions for the resources generated with wrc.
* [include/windows.h]
Added #ifdef RC_INVOKED to exclude stdarg.h.
Added SS_NOTIFY flag.
* [include/winnls.h]
Added SUBLANG_* definitions and corrected some defaults.
* [loader/libres.c]
Changed the sysres load functions to support wrc generated
resources.
* [resource/sysres_*.rc]
Added #include <windows.h>
* [resource/sysres.c]
Changed declarations to match wrc's output
* [resource/Makefile.in]
Changed rules to work with wrc.
* [tools/makedep.c]
Changed generation of .rc file dependencies to .s target.
Thu May 28 22:28:39 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [files/file.c][include/windows.c][relay32/kernel32.spec]
Implemented GetFileAttributesEx32A/W.
* [misc/imagelist.h][include/commctrl.h][relay32/comctl32.spec]
Added ImageList_Read and ImageList_Write stubs.
Added ImageList_AddIcon function.
Added ImageList_LoadImage. It is the same as ImageList_LoadImage32A.
* [controls/header.c]
Fixed bitmap drawing bug.
Added full bitmap support.
* [include/commctrl.h]
Added missing header macros.
* [controls/toolbar.c][include/toolbar.h][include/commctrl.h]
[controls/commctrl.c] [relay32/comctl32.spec]
First implementation of toolbar control.
Implemented CreateToolbar, CreateToolbarEx and CreateMappedBitmap.
* [controls/progress.c][controls/status.c]
Some code cleanup.
* [controls/commctrl.c][include/commctrl.h][relay32/comctl32.spec]
Removed CreateStatusWindow16 and DrawStatusText16.
CreateStatusWindow is the same as CreateStatusWindow32A.
DrawStatusText is the same as DrawStatusText32A.
Thu May 28 16:01:28 1998 Matthew J. Francis <asbel@dial.pipex.com>
* [objects/bitmap.c] [objects/bitmap.h] [objects/oembitmap.c]
[objects/dc.c] [graphics/x11drv/bitblt.c]
Added partial implementation of CreateDIBSection, with great thanks
to Ulrich Weigand <weigand@informatik.uni-erlangen.de> for
contributing the bulk of the patch.
Wed May 27 19:04:31 1998 Ulrich Weigand <weigand@informatik.uni-erlangen.de>
* [win32/kernel32.c] [if1632/thunk.c] [include/flatthunk.h]
ThunkConnect16 and related functions moved to emulator.
* [loader/ne/segment.c]
Call DllEntryPoint with correct arguments.
* [relay32/builtin32.c]
Bugfix: Relay debugging did not work for multiple processes.
* [controls/menu.c]
Bugfix: dwItemData was not set for MF_OWNERDRAW menus.
* [if1632/relay.c] [relay32/relay386.c]
Relay messages converted to use DPRINTF.
* [controls/desktop.c] [relay32/user32.spec]
Implemented PaintDesktop.
* [files/profile.c] [if1632/kernel.spec] [misc/network.c]
[misc/printdrv.c] [relay32/winspool.spec]
[win32/ordinals.c] [relay32/kernel32.spec]
Some stubs added.
* [relay32/mpr.spec]
All ordinals were off by one.
Tue May 26 13:32:57 1998 Bill Hawes <whawes@star.net>
* [misc/lstr.c] [include/casemap.h] [tools/unimap.pl]
Added Unicode case conversion routines towupper/towlower,
with mapping tables casemap.h created by tools/unimap.pl.
* [misc/ntdll.c] [include/winnls.h] [relay32/ntdll.spec]
[relay32/advapi.spec]
Minimal implementation of IsTextUnicode, just enough to get
NT4 notepad to open ascii/unicode files.
* [Make.rules.in] [resources/sysres_En.rc]
Added include file dlgs.h for building resource files, so that
resources can refer to defined values (e.g. pshHelp).
* [misc/crtdll.c] [relay32/crtdll.spec]
Use towupper/towlower for 32W case conversions.
* [memory/string.c]
Use towupper for 32W case conversions.
* [ole/ole2nls.c]
Use towupper for 32W case conversions; fix mem leak; minor cleanup
* [controls/edit.c]
Added soft break flag to edit state. Print unknown action values
for WM_VSCROLL (action 190 occurs when running NT4 notepad.)
Mon May 25 22:42:40 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [files/file.c]
Care for a pathological case in SetFilePointer.
* [graphics/x11drv/xfont.c]
Handle longer Font names in LFD_ComposeLFD and try to catch errors.
* [loader/pe_image.c]
Unload Dummymodule when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [misc/registry.c]
Move a check for a special case in RegCreateKeyEx32W after the
check for existence.
Tue May 25 20:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Added some stubs, just guessing at the size of their param lists.
* [misc/registry.c]
Added stubs for RegUnLoadKey, RegSetKeySecurity, RegSaveKey,
RegRestoreKey, and RegReplaceKey
* [programs/regtest/regtest.c]
Updated registry testing program.
Sun May 24 18:11:40 1998 Alex Priem <alexp@sci.kun.nl>
* [file/profile.c]
Added flag 'return_values' to PROFILE_GetSection.
Sun May 24 13:41:10 1998 James Juran <jrj120@psu.edu>
* [misc/shell.c] [files/directory.c]
Documentation/debugging info additions.
* [*/*.c] [include/*.h]
Moved many extern function definitions to appropriate header files.
Cleaned up a few compile warnings.
If #include "debug.h" is present, removed #include <stdio.h>.
debug.h includes stdio.h, so it is not necessary to include both.
* [graphics/*.c] [if1632/signal.c] [ipc/*.c] [scheduler/*.c]
[win32/*.c] [windows/*.c]
Final patch to convert fprintf statements to new debugging interface.
Some fprintfs are still left, especially in the debugger/ directory.
However, IMHO, it's not worth the effort to change the rest.
Fri May 22 21:58:35 1998 Morten Welinder <terra@diku.dk>
* [windows/keyboard.c]
Correct handling of keys "`-=[]\;',./".
Fri May 22 12:06:00 1998 Per Lindström <pelinstr@algonet.se>
* [include/windows.h] [relay32/kernel32.spec] [win32/console.c]
Added stub for ReadConsoleOutputCharacter32A.
Thu May 21 16:45:48 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c]
Began better implementation of LCMapString32A.
Not very well tested yet, and still need improvements.
* [controls/scroll.c]
Documented functions.
Wed May 20 21:37:56 1998 Peter Hunnisett <hunnise@nortel.ca>
* [include/windows.h][misc/main.c]
Change SystemParameterInfo to support SPI_GETHIGHCONTRAST. Also
include some missing SPI_ definitions.
* [include/dsound.h][multimedia/dsound.c][relay32/dplayx.spec]
Added stubs for DirectPlayLobbyCreate[AW]. Not sure if these
should go into a new files dplayx.c? Anyone care?
* [include/winnls.h]
Added two missing flags for the CompareString32 functions.
1998-06-01 10:44:35 +00:00
|
|
|
|
2000-11-08 22:42:53 +00:00
|
|
|
typedef VOID (*_INITTERMFUN)();
|
1999-08-08 18:47:59 +00:00
|
|
|
|
2000-11-08 22:42:53 +00:00
|
|
|
typedef VOID (*atexit_function)(VOID);
|
|
|
|
|
2000-11-25 21:39:03 +00:00
|
|
|
typedef INT (__cdecl *comp_func)(LPCVOID, LPCVOID );
|
2000-11-08 22:42:53 +00:00
|
|
|
|
|
|
|
/* CRTDLL functions */
|
|
|
|
|
2000-12-13 01:58:39 +00:00
|
|
|
/* dir.c */
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__chdir( LPCSTR newdir );
|
|
|
|
BOOL __cdecl CRTDLL__chdrive( INT newdrive );
|
|
|
|
INT __cdecl CRTDLL__findclose( DWORD hand );
|
|
|
|
DWORD __cdecl CRTDLL__findfirst( LPCSTR fspec, find_t* ft );
|
|
|
|
INT __cdecl CRTDLL__findnext( DWORD hand, find_t * ft );
|
|
|
|
CHAR* __cdecl CRTDLL__getcwd( LPSTR buf, INT size );
|
|
|
|
CHAR* __cdecl CRTDLL__getdcwd( INT drive,LPSTR buf, INT size );
|
|
|
|
UINT __cdecl CRTDLL__getdiskfree( UINT disk, diskfree_t* d );
|
|
|
|
INT __cdecl CRTDLL__getdrive( VOID );
|
|
|
|
INT __cdecl CRTDLL__mkdir( LPCSTR newdir );
|
|
|
|
INT __cdecl CRTDLL__rmdir( LPSTR dir );
|
|
|
|
|
2000-12-13 01:58:39 +00:00
|
|
|
/* exit.c */
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__abnormal_termination( VOID );
|
|
|
|
VOID __cdecl CRTDLL__amsg_exit( INT err );
|
|
|
|
VOID __cdecl CRTDLL__assert( LPVOID str, LPVOID file, UINT line );
|
|
|
|
VOID __cdecl CRTDLL__c_exit( VOID );
|
|
|
|
VOID __cdecl CRTDLL__cexit( VOID );
|
|
|
|
void __cdecl CRTDLL_exit( DWORD ret );
|
|
|
|
VOID __cdecl CRTDLL__exit( LONG ret );
|
|
|
|
VOID __cdecl CRTDLL_abort( VOID );
|
|
|
|
INT __cdecl CRTDLL_atexit( atexit_function x );
|
|
|
|
atexit_function __cdecl CRTDLL__onexit( atexit_function func);
|
|
|
|
|
2000-12-13 01:58:39 +00:00
|
|
|
/* file.c */
|
2000-11-08 22:42:53 +00:00
|
|
|
CRTDLL_FILE* __cdecl CRTDLL__iob( VOID );
|
|
|
|
CRTDLL_FILE* __cdecl CRTDLL__fsopen( LPCSTR path, LPCSTR mode, INT share );
|
|
|
|
CRTDLL_FILE* __cdecl CRTDLL__fdopen( INT fd, LPCSTR mode );
|
2000-11-25 21:39:03 +00:00
|
|
|
LPSTR __cdecl CRTDLL__mktemp( LPSTR pattern );
|
2000-11-08 22:42:53 +00:00
|
|
|
CRTDLL_FILE* __cdecl CRTDLL_fopen( LPCSTR path, LPCSTR mode );
|
|
|
|
CRTDLL_FILE* __cdecl CRTDLL_freopen( LPCSTR path,LPCSTR mode,CRTDLL_FILE* f );
|
2000-12-13 01:58:39 +00:00
|
|
|
CRTDLL_FILE* __cdecl CRTDLL_tmpfile( void );
|
2000-12-16 21:53:56 +00:00
|
|
|
WCHAR __cdecl CRTDLL__fgetwchar( VOID );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__fgetchar( VOID );
|
|
|
|
DWORD __cdecl CRTDLL_fread( LPVOID ptr,INT size,INT nmemb,CRTDLL_FILE* file );
|
2000-12-16 21:53:56 +00:00
|
|
|
INT __cdecl CRTDLL_fscanf( CRTDLL_FILE* stream, LPCSTR format, ... );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__filbuf( CRTDLL_FILE* file );
|
2000-11-25 21:39:03 +00:00
|
|
|
LONG __cdecl CRTDLL__filelength( INT fd );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__fileno( CRTDLL_FILE* file );
|
|
|
|
INT __cdecl CRTDLL__flsbuf( INT c, CRTDLL_FILE* file );
|
|
|
|
INT __cdecl CRTDLL__fputchar( INT c );
|
2000-12-16 21:53:56 +00:00
|
|
|
WCHAR __cdecl CRTDLL__fputwchar( WCHAR wc );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__flushall( VOID );
|
|
|
|
INT __cdecl CRTDLL__fcloseall( VOID );
|
|
|
|
LONG __cdecl CRTDLL__lseek( INT fd, LONG offset, INT whence );
|
|
|
|
LONG __cdecl CRTDLL_fseek( CRTDLL_FILE* file, LONG offset, INT whence );
|
|
|
|
VOID __cdecl CRTDLL_rewind( CRTDLL_FILE* file );
|
2000-12-13 01:59:40 +00:00
|
|
|
INT __cdecl CRTDLL_fsetpos( CRTDLL_FILE* file, CRTDLL_fpos_t *pos );
|
2000-11-08 22:42:53 +00:00
|
|
|
LONG __cdecl CRTDLL_ftell( CRTDLL_FILE* file );
|
|
|
|
UINT __cdecl CRTDLL_fwrite( LPCVOID ptr,INT size,INT nmemb,CRTDLL_FILE*file);
|
|
|
|
INT __cdecl CRTDLL_setbuf( CRTDLL_FILE* file, LPSTR buf );
|
|
|
|
INT __cdecl CRTDLL__open_osfhandle( HANDLE osfhandle, INT flags );
|
|
|
|
INT __cdecl CRTDLL_vfprintf( CRTDLL_FILE* file, LPCSTR format,va_list args);
|
|
|
|
INT __cdecl CRTDLL_fprintf( CRTDLL_FILE* file, LPCSTR format, ... );
|
2000-11-25 21:39:03 +00:00
|
|
|
INT __cdecl CRTDLL__putw( INT val, CRTDLL_FILE* file );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__read( INT fd, LPVOID buf, UINT count );
|
2000-12-13 01:58:39 +00:00
|
|
|
INT __cdecl CRTDLL__rmtmp( void );
|
2000-11-08 22:42:53 +00:00
|
|
|
UINT __cdecl CRTDLL__write( INT fd,LPCVOID buf,UINT count );
|
|
|
|
INT __cdecl CRTDLL__access( LPCSTR filename, INT mode );
|
|
|
|
INT __cdecl CRTDLL_fflush( CRTDLL_FILE* file );
|
|
|
|
INT __cdecl CRTDLL_fputc( INT c, CRTDLL_FILE* file );
|
|
|
|
VOID __cdecl CRTDLL_putchar( INT x );
|
|
|
|
INT __cdecl CRTDLL_fputs( LPCSTR s, CRTDLL_FILE* file );
|
|
|
|
INT __cdecl CRTDLL_puts( LPCSTR s );
|
|
|
|
INT __cdecl CRTDLL_putc( INT c, CRTDLL_FILE* file );
|
|
|
|
INT __cdecl CRTDLL_fgetc( CRTDLL_FILE* file );
|
|
|
|
INT __cdecl CRTDLL_getchar( VOID );
|
|
|
|
INT __cdecl CRTDLL_getc( CRTDLL_FILE* file );
|
2000-12-16 21:53:56 +00:00
|
|
|
WCHAR __cdecl CRTDLL_fgetwc( CRTDLL_FILE* file );
|
|
|
|
WCHAR __cdecl CRTDLL_fputwc( WCHAR wc, CRTDLL_FILE* file );
|
2000-11-08 22:42:53 +00:00
|
|
|
CHAR* __cdecl CRTDLL_fgets( LPSTR s, INT size, CRTDLL_FILE* file );
|
|
|
|
LPSTR __cdecl CRTDLL_gets( LPSTR buf );
|
|
|
|
INT __cdecl CRTDLL_fclose( CRTDLL_FILE* file );
|
|
|
|
INT __cdecl CTRDLL__creat( LPCSTR path, INT flags );
|
|
|
|
INT __cdecl CRTDLL__eof( INT fd );
|
2000-12-19 23:29:15 +00:00
|
|
|
LONG __cdecl CRTDLL__tell( INT fd );
|
|
|
|
INT __cdecl CRTDLL__umask( INT umask );
|
2000-11-25 21:39:03 +00:00
|
|
|
INT __cdecl CRTDLL__utime( LPCSTR path, struct _utimbuf *t );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__unlink( LPCSTR pathname );
|
2000-12-16 21:53:56 +00:00
|
|
|
INT __cdecl CRTDLL_scanf( LPCSTR format, ... );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL_rename( LPCSTR oldpath,LPCSTR newpath );
|
|
|
|
int __cdecl CRTDLL__stat( LPCSTR filename, struct _stat * buf );
|
|
|
|
INT __cdecl CRTDLL__open( LPCSTR path,INT flags );
|
2000-11-25 21:39:03 +00:00
|
|
|
INT __cdecl CRTDLL__chmod( LPCSTR path, INT flags );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__close( INT fd );
|
|
|
|
INT __cdecl CRTDLL_feof( CRTDLL_FILE* file );
|
|
|
|
INT __cdecl CRTDLL__setmode( INT fh,INT mode );
|
|
|
|
INT __cdecl CRTDLL_remove( LPCSTR path );
|
|
|
|
INT __cdecl CRTDLL__commit( INT fd );
|
|
|
|
INT __cdecl CRTDLL__fstat( int file, struct _stat* buf );
|
2000-11-25 02:11:59 +00:00
|
|
|
INT __cdecl CRTDLL__futime( INT fd, struct _utimbuf *t );
|
2000-11-08 22:42:53 +00:00
|
|
|
HANDLE __cdecl CRTDLL__get_osfhandle( INT fd );
|
|
|
|
|
|
|
|
/* CRTDLL_main.c */
|
|
|
|
DWORD __cdecl CRTDLL__initterm( _INITTERMFUN *start,_INITTERMFUN *end );
|
|
|
|
VOID __cdecl CRTDLL__global_unwind2( PEXCEPTION_FRAME frame );
|
|
|
|
VOID __cdecl CRTDLL__local_unwind2( PEXCEPTION_FRAME endframe, DWORD nr );
|
|
|
|
INT __cdecl CRTDLL__setjmp( LPDWORD *jmpbuf );
|
|
|
|
VOID __cdecl CRTDLL_srand( DWORD seed );
|
2000-11-25 21:39:03 +00:00
|
|
|
INT __cdecl CRTDLL__getw( CRTDLL_FILE* file );
|
2000-12-19 23:29:15 +00:00
|
|
|
INT __cdecl CRTDLL__isatty( INT fd );
|
2000-11-08 22:42:53 +00:00
|
|
|
VOID __cdecl CRTDLL__beep( UINT freq, UINT duration );
|
|
|
|
INT __cdecl CRTDLL_rand( VOID );
|
|
|
|
UINT __cdecl CRTDLL__rotl( UINT x,INT shift );
|
2000-11-27 01:37:28 +00:00
|
|
|
double __cdecl CRTDLL__logb( double x );
|
2000-11-08 22:42:53 +00:00
|
|
|
DWORD __cdecl CRTDLL__lrotl( DWORD x,INT shift );
|
|
|
|
DWORD __cdecl CRTDLL__lrotr( DWORD x,INT shift );
|
|
|
|
DWORD __cdecl CRTDLL__rotr( UINT x,INT shift );
|
2000-11-25 02:11:59 +00:00
|
|
|
double __cdecl CRTDLL__scalb( double x, LONG y );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL_vswprintf( LPWSTR buffer, LPCWSTR spec, va_list args );
|
|
|
|
VOID __cdecl CRTDLL_longjmp( jmp_buf env, int val );
|
|
|
|
LPSTR __cdecl CRTDLL_setlocale( INT category,LPCSTR locale );
|
2000-11-25 21:39:03 +00:00
|
|
|
INT __cdecl CRTDLL__isctype( INT c, UINT type );
|
2000-11-08 22:42:53 +00:00
|
|
|
LPSTR __cdecl CRTDLL__fullpath( LPSTR buf, LPCSTR name, INT size );
|
2000-12-19 23:29:15 +00:00
|
|
|
VOID __cdecl CRTDLL__splitpath( LPCSTR inpath, LPSTR drv, LPSTR dir,
|
2000-12-16 21:53:56 +00:00
|
|
|
LPSTR fname, LPSTR ext );
|
2000-11-25 21:39:03 +00:00
|
|
|
INT __cdecl CRTDLL__matherr( struct _exception *e );
|
|
|
|
VOID __cdecl CRTDLL__makepath( LPSTR path, LPCSTR drive,
|
|
|
|
LPCSTR directory, LPCSTR filename,
|
|
|
|
LPCSTR extension );
|
2000-11-08 22:42:53 +00:00
|
|
|
LPINT __cdecl CRTDLL__errno( VOID );
|
|
|
|
LPINT __cdecl CRTDLL___doserrno( VOID );
|
|
|
|
LPCSTR**__cdecl CRTDLL__sys_errlist( VOID );
|
|
|
|
VOID __cdecl CRTDLL_perror( LPCSTR err );
|
2000-11-25 21:39:03 +00:00
|
|
|
UINT __cdecl CRTDLL__statusfp( VOID );
|
2000-11-08 22:42:53 +00:00
|
|
|
LPSTR __cdecl CRTDLL__strerror( LPCSTR err );
|
|
|
|
LPSTR __cdecl CRTDLL_strerror( INT err );
|
|
|
|
LPSTR __cdecl CRTDLL__tempnam( LPCSTR dir, LPCSTR prefix );
|
|
|
|
LPSTR __cdecl CRTDLL_tmpnam( LPSTR s );
|
|
|
|
LPVOID __cdecl CRTDLL_signal( INT sig, sig_handler_type ptr );
|
|
|
|
VOID __cdecl CRTDLL__sleep( ULONG timeout );
|
|
|
|
LPSTR __cdecl CRTDLL_getenv( LPCSTR name );
|
2000-11-25 21:39:03 +00:00
|
|
|
INT __cdecl CRTDLL_isalnum( INT c );
|
|
|
|
INT __cdecl CRTDLL_isalpha( INT c );
|
|
|
|
INT __cdecl CRTDLL_iscntrl( INT c );
|
|
|
|
INT __cdecl CRTDLL_isdigit( INT c );
|
|
|
|
INT __cdecl CRTDLL_isgraph( INT c );
|
|
|
|
INT __cdecl CRTDLL_islower( INT c);
|
|
|
|
INT __cdecl CRTDLL_isprint( INT c);
|
|
|
|
INT __cdecl CRTDLL_ispunct( INT c);
|
|
|
|
INT __cdecl CRTDLL_isspace( INT c);
|
|
|
|
INT __cdecl CRTDLL_isupper( INT c);
|
|
|
|
INT __cdecl CRTDLL_isxdigit( INT c );
|
2000-12-16 21:53:56 +00:00
|
|
|
INT __cdecl CRTDLL_isleadbyte( UCHAR c );
|
2000-11-25 21:39:03 +00:00
|
|
|
double __cdecl CRTDLL_ldexp( double x, LONG y );
|
2000-11-08 22:42:53 +00:00
|
|
|
VOID __cdecl CRTDLL___dllonexit ( VOID );
|
|
|
|
VOID __cdecl CRTDLL__mbccpy( LPSTR dest, LPSTR src );
|
|
|
|
INT __cdecl CRTDLL___isascii( INT c );
|
|
|
|
INT __cdecl CRTDLL___toascii( INT c );
|
|
|
|
INT __cdecl CRTDLL_iswascii( LONG c );
|
2000-11-25 21:39:03 +00:00
|
|
|
INT __cdecl CRTDLL___iscsym( UCHAR c );
|
|
|
|
INT __cdecl CRTDLL___iscsymf( UCHAR c );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__loaddll( LPSTR dllname );
|
|
|
|
INT __cdecl CRTDLL__unloaddll( HANDLE dll );
|
|
|
|
WCHAR* __cdecl CRTDLL__itow( INT value,WCHAR* out,INT base );
|
|
|
|
WCHAR* __cdecl CRTDLL__ltow( LONG value,WCHAR* out,INT base );
|
2000-11-25 21:39:03 +00:00
|
|
|
WCHAR* __cdecl CRTDLL__ultow( ULONG value,WCHAR* out,INT base );
|
2000-11-08 22:42:53 +00:00
|
|
|
CHAR __cdecl CRTDLL__toupper( CHAR c );
|
|
|
|
CHAR __cdecl CRTDLL__tolower( CHAR c );
|
|
|
|
double __cdecl CRTDLL__cabs( struct complex c );
|
|
|
|
double __cdecl CRTDLL__chgsign( double d );
|
2000-11-25 21:39:03 +00:00
|
|
|
UINT __cdecl CRTDLL__control87( UINT newVal, UINT mask);
|
|
|
|
UINT __cdecl CRTDLL__controlfp( UINT newVal, UINT mask);
|
|
|
|
double __cdecl CRTDLL__copysign( double x, double sign );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL__finite( double d );
|
2000-11-25 21:39:03 +00:00
|
|
|
UINT __cdecl CRTDLL__clearfp( VOID );
|
2000-11-25 02:11:59 +00:00
|
|
|
INT __cdecl CRTDLL__fpclass( double d );
|
2000-11-08 22:42:53 +00:00
|
|
|
VOID __cdecl CRTDLL__fpreset( void );
|
|
|
|
INT __cdecl CRTDLL__isnan( double d );
|
|
|
|
LPVOID __cdecl CRTDLL__lsearch( LPVOID match, LPVOID start, LPUINT array_size,
|
|
|
|
UINT elem_size, comp_func cf );
|
2000-11-25 02:11:59 +00:00
|
|
|
VOID __cdecl CRTDLL__purecall( VOID );
|
2000-11-27 01:37:28 +00:00
|
|
|
double __cdecl CRTDLL__y0( double x );
|
|
|
|
double __cdecl CRTDLL__y1( double x );
|
|
|
|
double __cdecl CRTDLL__yn( INT x, double y );
|
2000-12-12 00:37:27 +00:00
|
|
|
double __cdecl CRTDLL__nextafter( double x, double y );
|
2000-12-13 01:58:39 +00:00
|
|
|
VOID __cdecl CRTDLL__searchenv(LPCSTR file, LPCSTR env, LPSTR buff);
|
2000-11-08 22:42:53 +00:00
|
|
|
|
2000-12-13 01:58:39 +00:00
|
|
|
/* memory.c */
|
2000-11-08 22:42:53 +00:00
|
|
|
LPVOID __cdecl CRTDLL_new( DWORD size );
|
|
|
|
VOID __cdecl CRTDLL_delete( LPVOID ptr );
|
|
|
|
new_handler_type __cdecl CRTDLL_set_new_handler( new_handler_type func );
|
2000-11-15 23:11:38 +00:00
|
|
|
INT __cdecl CRTDLL__heapchk( VOID );
|
|
|
|
INT __cdecl CRTDLL__heapmin( VOID );
|
|
|
|
INT __cdecl CRTDLL__heapset( UINT value );
|
|
|
|
INT __cdecl CRTDLL__heapwalk( struct _heapinfo *next );
|
2000-11-08 22:42:53 +00:00
|
|
|
LPVOID __cdecl CRTDLL__expand( LPVOID ptr, INT size );
|
|
|
|
LONG __cdecl CRTDLL__msize( LPVOID mem );
|
|
|
|
LPVOID __cdecl CRTDLL_calloc( DWORD size, DWORD count );
|
|
|
|
VOID __cdecl CRTDLL_free( LPVOID ptr );
|
|
|
|
LPVOID __cdecl CRTDLL_malloc( DWORD size );
|
|
|
|
LPVOID __cdecl CRTDLL_realloc( VOID *ptr, DWORD size );
|
|
|
|
|
2000-12-13 01:58:39 +00:00
|
|
|
/* spawn.c */
|
|
|
|
HANDLE __cdecl CRTDLL__spawnv( INT flags, LPCSTR name, LPCSTR *argv);
|
|
|
|
HANDLE __cdecl CRTDLL__spawnve( INT flags, LPCSTR name, LPCSTR *argv, LPCSTR *envv);
|
|
|
|
HANDLE __cdecl CRTDLL__spawnvp( INT flags, LPCSTR name, LPCSTR *argv);
|
|
|
|
HANDLE __cdecl CRTDLL__spawnvpe( INT flags, LPCSTR name, LPCSTR *argv, LPCSTR *envv);
|
|
|
|
INT __cdecl CRTDLL_system( LPCSTR cmd );
|
2000-12-16 21:53:56 +00:00
|
|
|
INT __cdecl CRTDLL__cwait( LPINT status, INT pid, INT action );
|
2000-11-08 22:42:53 +00:00
|
|
|
|
2000-12-13 01:58:39 +00:00
|
|
|
/* str.c */
|
2000-11-08 22:42:53 +00:00
|
|
|
LPSTR __cdecl CRTDLL__strdec( LPSTR str1, LPSTR str2 );
|
|
|
|
LPSTR __cdecl CRTDLL__strdup( LPCSTR ptr );
|
|
|
|
LPSTR __cdecl CRTDLL__strinc( LPSTR str );
|
2000-11-15 23:11:38 +00:00
|
|
|
UINT __cdecl CRTDLL__strnextc( LPCSTR str );
|
2000-11-08 22:42:53 +00:00
|
|
|
LPSTR __cdecl CRTDLL__strninc( LPSTR str, INT n );
|
|
|
|
LPSTR __cdecl CRTDLL__strnset( LPSTR str, INT c, INT len );
|
|
|
|
LPSTR __cdecl CRTDLL__strrev ( LPSTR str );
|
|
|
|
LPSTR __cdecl CRTDLL__strset ( LPSTR str, INT set );
|
|
|
|
LONG __cdecl CRTDLL__strncnt( LPSTR str, LONG max );
|
|
|
|
LPSTR __cdecl CRTDLL__strspnp( LPSTR str1, LPSTR str2 );
|
|
|
|
VOID __cdecl CRTDLL__swab( LPSTR src, LPSTR dst, INT len );
|
|
|
|
|
2000-12-13 01:58:39 +00:00
|
|
|
/* time.c */
|
2000-11-08 22:42:53 +00:00
|
|
|
LPSTR __cdecl CRTDLL__strdate ( LPSTR date );
|
|
|
|
LPSTR __cdecl CRTDLL__strtime ( LPSTR date );
|
|
|
|
clock_t __cdecl CRTDLL_clock ( void );
|
|
|
|
double __cdecl CRTDLL_difftime ( time_t time1, time_t time2 );
|
|
|
|
time_t __cdecl CRTDLL_time ( time_t *timeptr );
|
|
|
|
|
|
|
|
/* mbstring.c */
|
1999-08-08 18:47:59 +00:00
|
|
|
LPSTR __cdecl CRTDLL__mbsinc( LPCSTR str );
|
|
|
|
INT __cdecl CRTDLL__mbslen( LPCSTR str );
|
2000-11-08 22:42:53 +00:00
|
|
|
INT __cdecl CRTDLL_mbtowc( WCHAR *dst, LPCSTR str, INT n );
|
1999-08-08 18:47:59 +00:00
|
|
|
LPWSTR __cdecl CRTDLL__wcsdup( LPCWSTR str );
|
|
|
|
INT __cdecl CRTDLL__wcsicoll( LPCWSTR str1, LPCWSTR str2 );
|
|
|
|
LPWSTR __cdecl CRTDLL__wcsnset( LPWSTR str, WCHAR c, INT n );
|
|
|
|
LPWSTR __cdecl CRTDLL__wcsrev( LPWSTR str );
|
|
|
|
LPWSTR __cdecl CRTDLL__wcsset( LPWSTR str, WCHAR c );
|
2000-11-08 22:42:53 +00:00
|
|
|
DWORD __cdecl CRTDLL_wcscoll( LPCWSTR str1, LPCWSTR str2 );
|
|
|
|
LPWSTR __cdecl CRTDLL_wcspbrk( LPCWSTR str, LPCWSTR accept );
|
|
|
|
INT __cdecl CRTDLL_wctomb( LPSTR dst, WCHAR ch );
|
2000-12-19 23:29:15 +00:00
|
|
|
LPSTR __cdecl CRTDLL__mbsdec( LPCSTR start, LPCSTR cur );
|
|
|
|
LPSTR __cdecl CRTDLL__mbsninc( LPCSTR str, INT num );
|
|
|
|
INT __cdecl CRTDLL__mbscmp( LPCSTR str, LPCSTR cmp );
|
|
|
|
INT __cdecl CRTDLL__mbsicmp( LPCSTR str, LPCSTR cmp );
|
|
|
|
INT __cdecl CRTDLL__mbsncmp( LPCSTR str, LPCSTR cmp, UINT len );
|
|
|
|
INT __cdecl CRTDLL__mbsnicmp( LPCSTR str, LPCSTR cmp, UINT len );
|
|
|
|
LPSTR __cdecl CRTDLL__mbsrchr( LPCSTR s,CHAR x );
|
|
|
|
USHORT __cdecl CRTDLL__mbbtombc( USHORT c );
|
|
|
|
INT __cdecl CRTDLL__mbclen( LPCSTR str );
|
|
|
|
INT __cdecl CRTDLL__ismbbkana( UINT c );
|
|
|
|
INT __cdecl CRTDLL__ismbckata( UINT c );
|
|
|
|
INT __cdecl CRTDLL__ismbchira( UINT c );
|
|
|
|
INT __cdecl CRTDLL__ismbblead( UINT c );
|
|
|
|
INT __cdecl CRTDLL__ismbslead( LPCSTR start, LPCSTR str);
|
|
|
|
INT __cdecl CRTDLL__ismbbtrail( UINT c );
|
|
|
|
INT __cdecl CRTDLL__ismbstrail( LPCSTR start, LPCSTR str );
|
|
|
|
LPSTR __cdecl CRTDLL__mbsset( LPSTR str, UINT c );
|
|
|
|
LPSTR __cdecl CRTDLL__mbsnset( LPSTR str, UINT c, UINT len );
|
|
|
|
INT __cdecl CRTDLL__mbstrlen( LPCSTR str );
|
|
|
|
UINT __cdecl CRTDLL__mbsnextc( LPCSTR str );
|
|
|
|
LPSTR __cdecl CRTDLL__mbsncpy( LPSTR dst, LPCSTR src, UINT len );
|
|
|
|
LPSTR __cdecl CRTDLL__mbschr( LPCSTR str, UINT c );
|
|
|
|
UINT __cdecl CRTDLL__mbsnccnt( LPCSTR str, UINT len );
|
|
|
|
LPSTR __cdecl CRTDLL__mbsncat( LPSTR dst, LPCSTR src, UINT len );
|
2000-11-08 22:42:53 +00:00
|
|
|
|
|
|
|
/* wcstring.c */
|
2000-03-24 21:13:57 +00:00
|
|
|
INT __cdecl CRTDLL_iswalnum( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswalpha( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswcntrl( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswdigit( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswgraph( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswlower( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswprint( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswpunct( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswspace( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswupper( WCHAR wc );
|
|
|
|
INT __cdecl CRTDLL_iswxdigit( WCHAR wc );
|
1999-08-08 18:47:59 +00:00
|
|
|
|
2000-12-13 01:58:39 +00:00
|
|
|
/* console.c */
|
|
|
|
LPSTR __cdecl CRTDLL__cgets( LPSTR str );
|
2000-12-16 21:53:56 +00:00
|
|
|
INT __cdecl CRTDLL__cfprintf( LPCSTR format, ... );
|
2000-12-13 01:58:39 +00:00
|
|
|
INT __cdecl CRTDLL__cputs( LPCSTR str );
|
2000-12-16 21:53:56 +00:00
|
|
|
INT __cdecl CRTDLL__cscanf( LPCSTR format, ... );
|
2000-12-13 01:58:39 +00:00
|
|
|
INT __cdecl CRTDLL__getch( VOID );
|
|
|
|
INT __cdecl CRTDLL__getche( VOID );
|
|
|
|
INT __cdecl CRTDLL__kbhit( VOID );
|
|
|
|
INT __cdecl CRTDLL__putch( INT c );
|
|
|
|
INT __cdecl CRTDLL__ungetch( INT c );
|
|
|
|
|
|
|
|
|
2000-11-08 22:42:53 +00:00
|
|
|
/* INTERNAL: Shared internal functions */
|
|
|
|
void __CRTDLL__set_errno(ULONG err);
|
|
|
|
LPSTR __CRTDLL__strndup(LPSTR buf, INT size);
|
|
|
|
VOID __CRTDLL__init_io(VOID);
|
2000-12-13 01:58:39 +00:00
|
|
|
VOID __CRTDLL_init_console(VOID);
|
|
|
|
VOID __CRTDLL_free_console(VOID);
|
1999-08-08 18:47:59 +00:00
|
|
|
|
2000-12-12 00:37:27 +00:00
|
|
|
extern WORD CRTDLL_ctype [257];
|
2000-12-19 23:29:15 +00:00
|
|
|
extern UCHAR CRTDLL_mbctype[257];
|
2000-12-12 00:37:27 +00:00
|
|
|
extern WORD __CRTDLL_current_ctype[257];
|
|
|
|
extern WORD* CRTDLL_pctype_dll;
|
|
|
|
extern INT CRTDLL__mb_cur_max_dll;
|
|
|
|
extern LCID __CRTDLL_current_lc_all_lcid;
|
2000-12-19 23:29:15 +00:00
|
|
|
extern UINT __CRTDLL_current_lc_all_cp;
|
2000-12-12 00:37:27 +00:00
|
|
|
|
Release 980601
Sun May 31 13:40:13 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [if1632/signal.c]
Added display of exception name.
* [loader/task.c]
Yet another attempt at fixing SwitchStackTo/SwitchStackBack.
* [memory/selector.c] [relay32/builtin32.c] [tools/build.c]
[win32/kernel32.c]
Generate an assembly stub for Win32 register functions to make
their names available at link time.
* [programs/*/Makefile.in]
Added hacks to support old resource compiler.
Fri May 29 16:27:14 1998 Marcus Meissner <marcus@jet.franken.de>
* [tools/testrun]
Merge of my testscripts at home into one single perl program
(tested with perl5). Works only on Linux due to 'ps' and 'ipcs'
magic.
* [controls/menu.c]
Added some DefaultMenuItem stubs.
* [debugger/stabs.c]
Fixed stabs loading, now supports (int,int) typeinfo format used
by gcc-2.8 and egcs-1. If it still crashes, please mail me.
* [if1632/][relay32/]
Added msvideo.dll (stubs only)
Replaced some ptr by str for stringcases
Added some new stubs (VxDCall, FindCloseNotif....)
* [misc/network.c]
Some argument fixes.
* [misc/registry.c][misc/cpu.c]
Registry initialization partially rewritten and enhanced.
* [scheduler/*.c]
Some additions so we don't do kill(0,SIGUSR1) (kill processgroup
instead of targeted thread)
Added SetThreadContext.
Thu May 28 23:59:59 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [tools/wrc/*]
New resource compiler version 1.0.0 (28-May-1998)
* [Make.rules.in] [Makefile.in]
Changed and added rc rules to point to tools/wrc/wrc.
* [configure.in] [include/config.h.in]
Added check for function 'stricmp'.
* [include/resource.h]
Commented out the old resource structure to catch references.
It also includes wrc_rsc.h.
* [include/wrc_rsc.h]
New file. Definitions for the resources generated with wrc.
* [include/windows.h]
Added #ifdef RC_INVOKED to exclude stdarg.h.
Added SS_NOTIFY flag.
* [include/winnls.h]
Added SUBLANG_* definitions and corrected some defaults.
* [loader/libres.c]
Changed the sysres load functions to support wrc generated
resources.
* [resource/sysres_*.rc]
Added #include <windows.h>
* [resource/sysres.c]
Changed declarations to match wrc's output
* [resource/Makefile.in]
Changed rules to work with wrc.
* [tools/makedep.c]
Changed generation of .rc file dependencies to .s target.
Thu May 28 22:28:39 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [files/file.c][include/windows.c][relay32/kernel32.spec]
Implemented GetFileAttributesEx32A/W.
* [misc/imagelist.h][include/commctrl.h][relay32/comctl32.spec]
Added ImageList_Read and ImageList_Write stubs.
Added ImageList_AddIcon function.
Added ImageList_LoadImage. It is the same as ImageList_LoadImage32A.
* [controls/header.c]
Fixed bitmap drawing bug.
Added full bitmap support.
* [include/commctrl.h]
Added missing header macros.
* [controls/toolbar.c][include/toolbar.h][include/commctrl.h]
[controls/commctrl.c] [relay32/comctl32.spec]
First implementation of toolbar control.
Implemented CreateToolbar, CreateToolbarEx and CreateMappedBitmap.
* [controls/progress.c][controls/status.c]
Some code cleanup.
* [controls/commctrl.c][include/commctrl.h][relay32/comctl32.spec]
Removed CreateStatusWindow16 and DrawStatusText16.
CreateStatusWindow is the same as CreateStatusWindow32A.
DrawStatusText is the same as DrawStatusText32A.
Thu May 28 16:01:28 1998 Matthew J. Francis <asbel@dial.pipex.com>
* [objects/bitmap.c] [objects/bitmap.h] [objects/oembitmap.c]
[objects/dc.c] [graphics/x11drv/bitblt.c]
Added partial implementation of CreateDIBSection, with great thanks
to Ulrich Weigand <weigand@informatik.uni-erlangen.de> for
contributing the bulk of the patch.
Wed May 27 19:04:31 1998 Ulrich Weigand <weigand@informatik.uni-erlangen.de>
* [win32/kernel32.c] [if1632/thunk.c] [include/flatthunk.h]
ThunkConnect16 and related functions moved to emulator.
* [loader/ne/segment.c]
Call DllEntryPoint with correct arguments.
* [relay32/builtin32.c]
Bugfix: Relay debugging did not work for multiple processes.
* [controls/menu.c]
Bugfix: dwItemData was not set for MF_OWNERDRAW menus.
* [if1632/relay.c] [relay32/relay386.c]
Relay messages converted to use DPRINTF.
* [controls/desktop.c] [relay32/user32.spec]
Implemented PaintDesktop.
* [files/profile.c] [if1632/kernel.spec] [misc/network.c]
[misc/printdrv.c] [relay32/winspool.spec]
[win32/ordinals.c] [relay32/kernel32.spec]
Some stubs added.
* [relay32/mpr.spec]
All ordinals were off by one.
Tue May 26 13:32:57 1998 Bill Hawes <whawes@star.net>
* [misc/lstr.c] [include/casemap.h] [tools/unimap.pl]
Added Unicode case conversion routines towupper/towlower,
with mapping tables casemap.h created by tools/unimap.pl.
* [misc/ntdll.c] [include/winnls.h] [relay32/ntdll.spec]
[relay32/advapi.spec]
Minimal implementation of IsTextUnicode, just enough to get
NT4 notepad to open ascii/unicode files.
* [Make.rules.in] [resources/sysres_En.rc]
Added include file dlgs.h for building resource files, so that
resources can refer to defined values (e.g. pshHelp).
* [misc/crtdll.c] [relay32/crtdll.spec]
Use towupper/towlower for 32W case conversions.
* [memory/string.c]
Use towupper for 32W case conversions.
* [ole/ole2nls.c]
Use towupper for 32W case conversions; fix mem leak; minor cleanup
* [controls/edit.c]
Added soft break flag to edit state. Print unknown action values
for WM_VSCROLL (action 190 occurs when running NT4 notepad.)
Mon May 25 22:42:40 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [files/file.c]
Care for a pathological case in SetFilePointer.
* [graphics/x11drv/xfont.c]
Handle longer Font names in LFD_ComposeLFD and try to catch errors.
* [loader/pe_image.c]
Unload Dummymodule when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [misc/registry.c]
Move a check for a special case in RegCreateKeyEx32W after the
check for existence.
Tue May 25 20:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Added some stubs, just guessing at the size of their param lists.
* [misc/registry.c]
Added stubs for RegUnLoadKey, RegSetKeySecurity, RegSaveKey,
RegRestoreKey, and RegReplaceKey
* [programs/regtest/regtest.c]
Updated registry testing program.
Sun May 24 18:11:40 1998 Alex Priem <alexp@sci.kun.nl>
* [file/profile.c]
Added flag 'return_values' to PROFILE_GetSection.
Sun May 24 13:41:10 1998 James Juran <jrj120@psu.edu>
* [misc/shell.c] [files/directory.c]
Documentation/debugging info additions.
* [*/*.c] [include/*.h]
Moved many extern function definitions to appropriate header files.
Cleaned up a few compile warnings.
If #include "debug.h" is present, removed #include <stdio.h>.
debug.h includes stdio.h, so it is not necessary to include both.
* [graphics/*.c] [if1632/signal.c] [ipc/*.c] [scheduler/*.c]
[win32/*.c] [windows/*.c]
Final patch to convert fprintf statements to new debugging interface.
Some fprintfs are still left, especially in the debugger/ directory.
However, IMHO, it's not worth the effort to change the rest.
Fri May 22 21:58:35 1998 Morten Welinder <terra@diku.dk>
* [windows/keyboard.c]
Correct handling of keys "`-=[]\;',./".
Fri May 22 12:06:00 1998 Per Lindström <pelinstr@algonet.se>
* [include/windows.h] [relay32/kernel32.spec] [win32/console.c]
Added stub for ReadConsoleOutputCharacter32A.
Thu May 21 16:45:48 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c]
Began better implementation of LCMapString32A.
Not very well tested yet, and still need improvements.
* [controls/scroll.c]
Documented functions.
Wed May 20 21:37:56 1998 Peter Hunnisett <hunnise@nortel.ca>
* [include/windows.h][misc/main.c]
Change SystemParameterInfo to support SPI_GETHIGHCONTRAST. Also
include some missing SPI_ definitions.
* [include/dsound.h][multimedia/dsound.c][relay32/dplayx.spec]
Added stubs for DirectPlayLobbyCreate[AW]. Not sure if these
should go into a new files dplayx.c? Anyone care?
* [include/winnls.h]
Added two missing flags for the CompareString32 functions.
1998-06-01 10:44:35 +00:00
|
|
|
#endif /* __WINE_CRTDLL_H */
|