Release 950522
Sun May 21 12:30:30 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
* [debugger/hash.c] [debugger/info.c]
Added support for symbolic segmented addresses. Add symbols for all
built-in API entry points.
* [if1632/relay.c] [include/dlls.h]
Removed dll_table structure, as we now use the built-in module
structures.
* [if1632/relay.c] [loader/main.c]
Removed winestat option, as it was no longer very meaningful.
* [include/stackframe.h]
New macro MAKE_SEGPTR that creates a segmented pointer to a local
variable on the 32-bit stack.
* [loader/module.c]
Added support for multiple instances of an application.
Implemented LoadModule() and FreeModule().
* [loader/ne_image.c] [loader/task.c]
Moved initialisation of built-in DLLs to InitTask().
* [memory/global.c]
Implemented discardable blocks.
* [misc/file.c]
Search path of current executable in OpenFile().
Fixed bug with searching in Windows path.
* [misc/lstr.c]
Hard-coded translation tables for Ansi<->Oem.
* [misc/user.c]
Moved some global initializations to InitApp(), because they need
a task context to be performed.
* [objects/dc.c]
Handle R2_BLACK and R2_WHITE specially so that they work correctly
with palette displays.
* [tools/build.c]
Suppressed generation of the C file for DLL specs, because it's no
longer needed. Output all the assembly code directly to stdout.
Some changes to integrate Win32 support from Martin von Loewis.
* [windows/msgbox.c]
Moved message box code from misc/ to windows/.
Mon May 15 23:40:04 1995 Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
* [misc/audio.c] [misc/mcicda.c] [misc/mcianim.c] [misc/midi.c]
[misc/mmaux.c] [misc/mmsystem.c]
Modify code & use pointers conversion macros.
Make cdaudio & wave devices work again (only using some applets).
* [misc/profile.c]
Change getc() to fgetc() where needed.
Mon May 15 22:10:56 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
* [if1632/Imakefile]
added entries for the new files gdi32.spec, kernel32.spec,
user32.spec, shell32.spec and winprocs32.spec.
* [if1632/commdlg.spec][if1632/kernel.spec][if1632/shell.spec]
[if1632/storage.spec][if1632/system.spec][if1632/user.spec]
ChooseFont, RESERVED5, InternalExtractIcon: Marked as stubs
ExtractAssociatedIcon, DoEnvironmentSubst, DumpIcon:
stub implementations provided
marked storage.dll,storege.sys functions as stubs
* [include/pe_image.h]
Added structures WIN32_builtin and WIN32_function
* [include/peexe.h]
PE_Import_Directory: renamed reserved fields to
TimeDate, Forwarder, Thunk_List
* [include/winerror.h]
New file.
* [loader/main.c]
called RELAY32_Init
* [loader/pe_image.c]
xmmap: map BSS anonymous
dump_imports: renamed to fixup_imports, do the fixup of imported
symbols
PE_LoadImage: pass raw data size to xmmap
* [loader/resource.c]
DumpIcon: new function
* [misc/kernel32.c]
New file.
* [misc/main.c]
make stdout and stderr unbuffered
* [misc/shell.c]
DoEnvironmentSubst: new function
* [objects/font.c]
FONT_MatchFont: try oblique if there is no italic
* [rc/Imakefile][rc/parser.l]
yywrap: new function
Don't link with libfl.a on Linux
* [tools/build.c]
Added keywords stdcall, subsystem, base
GenerateForWin32: new function
BuildSpecFiles: call GenerateForWin32 if subsystem is win32
Mon May 15 10:38:14 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [controls/listbox.c] [controls/combo.c] [windows/defwnd.c]
Minor fixes.
* [misc/message.c] [misc/main.c] [rc/sysres*.rc] [include/texts.h]
Rewrote message box handling.
* [windows/dialog.c]
Dialogs should be invisible until after WM_INITDIALOG is seent.
Don't switch to invisible dialog items on a TAB keypress.
* [windows/mdi.c]
Send WM_NCPAINT message in MDIRestoreChild().
* [windows/painting.c]
Fixed typo (&& -> &).
* [windows/message.c] [if1632/user.spec]
Implemented PostAppMessage().
* [windows/event.c]
SetCapture(0) should act like ReleaseCapture().
Tue May 9 11:55:52 1995 Eddie C. Dost (ecd@dressler.de)
* [Imakefile]
Changed CDEBUGFLAGS for systems running __ELF__ (temporarily)
Added ASFLAGS to exported variables.
* [debugger/readline/Imakefile]
Moved defines for libreadline from DEFINES to EXTRA_DEFINES
* [memory/local.c] [miscemu/int21.c]
Added some more debugging outputs.
Mon May 8 00:55:27 MET DST 1995 Dag Asheim (dash@ifi.uio.no)
* [misc/message.c]
Fixed a "FIXME" concerning norwegian translation.
Sun May 7 23:25:23 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [*/*]
Removed warnings in a couple of files and deleted some obsolete code.
* [controls/listbox.c]
Cleanup, speed improvements & lots of bug fixes.
* [controls/combo.c]
Mostly rewritten. This is still very buggy, but not quite as bad as
before.
* [include/commdlg.h] [misc/commdlg.c]
Removed the need for sysres.dll. Small bug fixes.
* [objects/oembitmap.c] [include/bitmaps/<many>] [include/windows.h]
[loader/library.c] [loader/main.c] [rc/sysres*.rc]
Removed sysres.dll and replaced the remaining bitmaps/icons with
XPM equivalents.
* [misc/message.c] [windows/nonclient.c] [misc/main.c]
[if1632/winprocs.spec]
"About Wine..." now brings up a standard ShellAbout() window with
the Wine icon and the list of contributors.
* [misc/shell.c]
Fixed ShellAbout()/AboutDialogProc() to show the right icon.
* [windows/event.c]
Small hack for non-alphanumeric keys: Dont't send the ascii value in
the WM_KEYDOWN message, but some unused code instead. Should be done
properly by sending different codes for each key. The edit control
used to get a VK_DELETE message each time the user typed '.'.
* [windows/class.c]
Removed a check for CS_GLOBALCLASS in CLASS_FindClassByName().
This used to be no problem, but breaks Resource Workshop in 950403.
* [objects/dib.c]
New diagnostic for a bug I've been encountering. If it shows up,
please report it.
Sun May 7 23:11:18 EDT 1995 William Magro (wmagro@tc.cornell.edu)
* [objects/color.c]
Handle situation when 'dc' exists, but palette mapping
does not. (Fixes kidpix2 demo.)
Sun May 7 03:32:00 1995 Charles M. Hannum (mycroft@mit.edu)
* [loader/ldt.c]
LDT_Print: Only show the number of entries that the kernel
returned. Make this work for NetBSD.
Fri May 5 02:53:26 1995 Charles M. Hannum (mycroft@mit.edu)
* [debugger/dbg.y] [include/wine.h] [loader/signal.c]
Modify cs and ds selector values for NetBSD-current.
* [debugger/debug.l]
$sp, $esp: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
* [debugger/regpos.h]
Modify sigcontext format for NetBSD-current.
SC_ESP: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
* [include/ldt.h]
SELECTOR_TO_ENTRY: Explicitly clear the top half of the selector
value, since only 16 bits of it may have been saved.
* [misc/winsocket.c]
Set structure packing with `#pragma pack' to accomodate
other/older compilers.
Tue May 2 18:15:01 1995 Paal Beyer (beyer@idt.unit.no)
* [misc/commdlg.c]
Fixed path-names so when changing directory the listboxes
changes too.
* [debugger/dbg.y debugger/debug.l wine.ini]
Added SymbolTableFile to wine.ini so symbols can be read
without standing in the directory containing wine.sym.
Added the possibility to specify full name of wine.sym from
the debugger prompt.
1995-05-22 18:23:01 +00:00
|
|
|
name kernel32
|
1996-03-31 16:40:13 +00:00
|
|
|
type win32
|
Release 950522
Sun May 21 12:30:30 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
* [debugger/hash.c] [debugger/info.c]
Added support for symbolic segmented addresses. Add symbols for all
built-in API entry points.
* [if1632/relay.c] [include/dlls.h]
Removed dll_table structure, as we now use the built-in module
structures.
* [if1632/relay.c] [loader/main.c]
Removed winestat option, as it was no longer very meaningful.
* [include/stackframe.h]
New macro MAKE_SEGPTR that creates a segmented pointer to a local
variable on the 32-bit stack.
* [loader/module.c]
Added support for multiple instances of an application.
Implemented LoadModule() and FreeModule().
* [loader/ne_image.c] [loader/task.c]
Moved initialisation of built-in DLLs to InitTask().
* [memory/global.c]
Implemented discardable blocks.
* [misc/file.c]
Search path of current executable in OpenFile().
Fixed bug with searching in Windows path.
* [misc/lstr.c]
Hard-coded translation tables for Ansi<->Oem.
* [misc/user.c]
Moved some global initializations to InitApp(), because they need
a task context to be performed.
* [objects/dc.c]
Handle R2_BLACK and R2_WHITE specially so that they work correctly
with palette displays.
* [tools/build.c]
Suppressed generation of the C file for DLL specs, because it's no
longer needed. Output all the assembly code directly to stdout.
Some changes to integrate Win32 support from Martin von Loewis.
* [windows/msgbox.c]
Moved message box code from misc/ to windows/.
Mon May 15 23:40:04 1995 Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
* [misc/audio.c] [misc/mcicda.c] [misc/mcianim.c] [misc/midi.c]
[misc/mmaux.c] [misc/mmsystem.c]
Modify code & use pointers conversion macros.
Make cdaudio & wave devices work again (only using some applets).
* [misc/profile.c]
Change getc() to fgetc() where needed.
Mon May 15 22:10:56 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
* [if1632/Imakefile]
added entries for the new files gdi32.spec, kernel32.spec,
user32.spec, shell32.spec and winprocs32.spec.
* [if1632/commdlg.spec][if1632/kernel.spec][if1632/shell.spec]
[if1632/storage.spec][if1632/system.spec][if1632/user.spec]
ChooseFont, RESERVED5, InternalExtractIcon: Marked as stubs
ExtractAssociatedIcon, DoEnvironmentSubst, DumpIcon:
stub implementations provided
marked storage.dll,storege.sys functions as stubs
* [include/pe_image.h]
Added structures WIN32_builtin and WIN32_function
* [include/peexe.h]
PE_Import_Directory: renamed reserved fields to
TimeDate, Forwarder, Thunk_List
* [include/winerror.h]
New file.
* [loader/main.c]
called RELAY32_Init
* [loader/pe_image.c]
xmmap: map BSS anonymous
dump_imports: renamed to fixup_imports, do the fixup of imported
symbols
PE_LoadImage: pass raw data size to xmmap
* [loader/resource.c]
DumpIcon: new function
* [misc/kernel32.c]
New file.
* [misc/main.c]
make stdout and stderr unbuffered
* [misc/shell.c]
DoEnvironmentSubst: new function
* [objects/font.c]
FONT_MatchFont: try oblique if there is no italic
* [rc/Imakefile][rc/parser.l]
yywrap: new function
Don't link with libfl.a on Linux
* [tools/build.c]
Added keywords stdcall, subsystem, base
GenerateForWin32: new function
BuildSpecFiles: call GenerateForWin32 if subsystem is win32
Mon May 15 10:38:14 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [controls/listbox.c] [controls/combo.c] [windows/defwnd.c]
Minor fixes.
* [misc/message.c] [misc/main.c] [rc/sysres*.rc] [include/texts.h]
Rewrote message box handling.
* [windows/dialog.c]
Dialogs should be invisible until after WM_INITDIALOG is seent.
Don't switch to invisible dialog items on a TAB keypress.
* [windows/mdi.c]
Send WM_NCPAINT message in MDIRestoreChild().
* [windows/painting.c]
Fixed typo (&& -> &).
* [windows/message.c] [if1632/user.spec]
Implemented PostAppMessage().
* [windows/event.c]
SetCapture(0) should act like ReleaseCapture().
Tue May 9 11:55:52 1995 Eddie C. Dost (ecd@dressler.de)
* [Imakefile]
Changed CDEBUGFLAGS for systems running __ELF__ (temporarily)
Added ASFLAGS to exported variables.
* [debugger/readline/Imakefile]
Moved defines for libreadline from DEFINES to EXTRA_DEFINES
* [memory/local.c] [miscemu/int21.c]
Added some more debugging outputs.
Mon May 8 00:55:27 MET DST 1995 Dag Asheim (dash@ifi.uio.no)
* [misc/message.c]
Fixed a "FIXME" concerning norwegian translation.
Sun May 7 23:25:23 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* [*/*]
Removed warnings in a couple of files and deleted some obsolete code.
* [controls/listbox.c]
Cleanup, speed improvements & lots of bug fixes.
* [controls/combo.c]
Mostly rewritten. This is still very buggy, but not quite as bad as
before.
* [include/commdlg.h] [misc/commdlg.c]
Removed the need for sysres.dll. Small bug fixes.
* [objects/oembitmap.c] [include/bitmaps/<many>] [include/windows.h]
[loader/library.c] [loader/main.c] [rc/sysres*.rc]
Removed sysres.dll and replaced the remaining bitmaps/icons with
XPM equivalents.
* [misc/message.c] [windows/nonclient.c] [misc/main.c]
[if1632/winprocs.spec]
"About Wine..." now brings up a standard ShellAbout() window with
the Wine icon and the list of contributors.
* [misc/shell.c]
Fixed ShellAbout()/AboutDialogProc() to show the right icon.
* [windows/event.c]
Small hack for non-alphanumeric keys: Dont't send the ascii value in
the WM_KEYDOWN message, but some unused code instead. Should be done
properly by sending different codes for each key. The edit control
used to get a VK_DELETE message each time the user typed '.'.
* [windows/class.c]
Removed a check for CS_GLOBALCLASS in CLASS_FindClassByName().
This used to be no problem, but breaks Resource Workshop in 950403.
* [objects/dib.c]
New diagnostic for a bug I've been encountering. If it shows up,
please report it.
Sun May 7 23:11:18 EDT 1995 William Magro (wmagro@tc.cornell.edu)
* [objects/color.c]
Handle situation when 'dc' exists, but palette mapping
does not. (Fixes kidpix2 demo.)
Sun May 7 03:32:00 1995 Charles M. Hannum (mycroft@mit.edu)
* [loader/ldt.c]
LDT_Print: Only show the number of entries that the kernel
returned. Make this work for NetBSD.
Fri May 5 02:53:26 1995 Charles M. Hannum (mycroft@mit.edu)
* [debugger/dbg.y] [include/wine.h] [loader/signal.c]
Modify cs and ds selector values for NetBSD-current.
* [debugger/debug.l]
$sp, $esp: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
* [debugger/regpos.h]
Modify sigcontext format for NetBSD-current.
SC_ESP: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
* [include/ldt.h]
SELECTOR_TO_ENTRY: Explicitly clear the top half of the selector
value, since only 16 bits of it may have been saved.
* [misc/winsocket.c]
Set structure packing with `#pragma pack' to accomodate
other/older compilers.
Tue May 2 18:15:01 1995 Paal Beyer (beyer@idt.unit.no)
* [misc/commdlg.c]
Fixed path-names so when changing directory the listboxes
changes too.
* [debugger/dbg.y debugger/debug.l wine.ini]
Added SymbolTableFile to wine.ini so symbols can be read
without standing in the directory containing wine.sym.
Added the possibility to specify full name of wine.sym from
the debugger prompt.
1995-05-22 18:23:01 +00:00
|
|
|
|
1997-06-16 17:43:53 +00:00
|
|
|
# Functions exported by the Win95 kernel32.dll
|
|
|
|
# (these need to have these exact ordinals, for some win95 dlls
|
|
|
|
# import kernel32.dll by ordinal)
|
|
|
|
# the base is NOT included in these ordinals
|
|
|
|
|
|
|
|
# undocumented ordinal only calls (names taken from k32exp.h by Andrew
|
|
|
|
# Schulman.
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
1 stub VxDCall0
|
|
|
|
2 stub VxDCall1
|
|
|
|
3 stub VxDCall2
|
|
|
|
4 stub VxDCall3
|
|
|
|
5 stub VxDCall4
|
|
|
|
6 stub VxDCall5
|
|
|
|
7 stub VxDCall6
|
|
|
|
8 stub VxDCall7
|
|
|
|
9 stub VxDCall8
|
1997-06-16 17:43:53 +00:00
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
10 stub _KERNEL32_stringconv1 #ansi2oem or reverse?
|
1997-06-16 17:43:53 +00:00
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
18 stdcall _KERNEL32_18(long long) _KERNEL32_18
|
|
|
|
19 stub _KERNEL32_getheapsegment
|
1997-06-16 17:43:53 +00:00
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
31 stub _KERNEL32_31
|
1997-06-16 17:43:53 +00:00
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
34 stdcall _KERNEL32_34() _KERNEL32_34
|
|
|
|
35 stdcall LoadLibrary16(ptr) LoadLibrary16
|
|
|
|
36 stdcall FreeLibrary16(long) FreeLibrary16
|
|
|
|
37 stdcall GetProcAddress16(long ptr) WIN32_GetProcAddress16
|
1997-06-16 17:43:53 +00:00
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
40 stub _KERNEL32_40
|
|
|
|
41 stdcall _KERNEL32_41(long long long long long) _KERNEL32_41
|
|
|
|
42 stub _KERNEL32_42
|
|
|
|
43 stdcall _KERNEL32_43(long ptr long ptr ptr) _KERNEL32_43
|
|
|
|
45 register _KERNEL32_45() _KERNEL32_45
|
|
|
|
46 stdcall _KERNEL32_46(long long long long long) _KERNEL32_46
|
|
|
|
47 stub _KERNEL32_47
|
1997-06-16 17:43:53 +00:00
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
50 stdcall AddAtomA(ptr) AddAtom32A
|
1997-06-16 17:43:53 +00:00
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
52 register _KERNEL32_52(long) _KERNEL32_52
|
1997-06-16 17:43:53 +00:00
|
|
|
|
|
|
|
# WOW calls
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
54 stdcall WOWCallback16(long long) WOWCallback16
|
|
|
|
55 stub WOWCallback16Ex
|
|
|
|
56 stdcall WOWGetVDMPointer(long long long) WOWGetVDMPointer
|
|
|
|
57 stub WOWHandle32
|
|
|
|
58 stub WOWHandle16
|
|
|
|
59 stub WOWGlobalAlloc16
|
|
|
|
60 stub WOWGlobalLock16
|
|
|
|
61 stub WOWGlobalUnlock16
|
|
|
|
62 stub WOWGlobalFree16
|
|
|
|
63 stdcall WOWGlobalAllocLock16(long long ptr) WOWGlobalAllocLock16
|
|
|
|
64 stub WOWGlobalUnlockFree16
|
|
|
|
65 stub WOWGlobalLockSize16
|
|
|
|
66 stub WOWYield16
|
|
|
|
67 stub WOWDirectedYield16
|
|
|
|
68 stdcall WOWGetVDMPointerFix(long long long) WOWGetVDMPointerFix
|
|
|
|
69 stdcall WOWGetVDMPointerUnfix(long) WOWGetVDMPointerUnfix
|
|
|
|
70 stdcall WOW32_1(long long) WOW32_1
|
1997-06-16 17:43:53 +00:00
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
72 stub RtlLargeIntegerAdd
|
|
|
|
73 stub RtlEnlargedIntegerMultiply
|
|
|
|
74 stub RtlEnlargedUnsignedMultiply
|
|
|
|
75 stub RtlEnlargedUnsignedDivide
|
|
|
|
76 stub RtlExtendedLargeIntegerDivide
|
|
|
|
77 stub RtlExtendedMagicDivide
|
|
|
|
78 stub RtlExtendedIntegerMultiply
|
|
|
|
79 stub RtlLargeIntegerShiftLeft
|
|
|
|
80 stub RtlLargeIntegerShiftRight
|
|
|
|
81 stub RtlLargeIntegerArithmeticShift
|
|
|
|
82 stub RtlLargeIntegerNegate
|
|
|
|
83 stub RtlLargeIntegerSubtract
|
|
|
|
84 stub RtlConvertLongToLargeInteger
|
|
|
|
85 stub RtlConvertUlongToLargeInteger
|
1997-06-16 17:43:53 +00:00
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
87 stdcall _KERNEL32_87() _KERNEL32_87
|
|
|
|
88 varargs _KERNEL32_88() _KERNEL32_88
|
|
|
|
89 stub _KERNEL32_89
|
|
|
|
90 register _KERNEL32_90() _KERNEL32_90
|
|
|
|
91 stub _KERNEL32_91
|
|
|
|
92 stub _KERNEL32_92
|
|
|
|
93 stdcall GETPWIN16LOCK(ptr) GetPWinLock
|
|
|
|
97 stub ENTERSYSLEVEL
|
|
|
|
98 stub LEAVESYSLEVEL
|
|
|
|
99 stub _KERNEL32_98
|
|
|
|
100 stub _KERNEL32_99
|
|
|
|
101 stub _KERNEL32_100
|
1997-06-16 17:43:53 +00:00
|
|
|
|
|
|
|
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
102 stdcall AddAtomW(ptr) AddAtom32W
|
|
|
|
103 stub AllocConsole
|
|
|
|
104 stub AllocLSCallback
|
|
|
|
105 stub AllocSLCallback
|
|
|
|
106 stdcall AreFileApisANSI() AreFileApisANSI
|
|
|
|
107 stub BackupRead
|
|
|
|
108 stub BackupSeek
|
|
|
|
109 stub BackupWrite
|
|
|
|
110 stdcall Beep(long long) Beep
|
|
|
|
111 stub BeginUpdateResourceA
|
|
|
|
112 stub BeginUpdateResourceW
|
|
|
|
113 stdcall BuildCommDCBA(ptr ptr) BuildCommDCB32A
|
|
|
|
114 stdcall BuildCommDCBAndTimeoutsA(ptr ptr ptr) BuildCommDCBAndTimeouts32A
|
|
|
|
115 stdcall BuildCommDCBAndTimeoutsW(ptr ptr ptr) BuildCommDCBAndTimeouts32W
|
|
|
|
116 stdcall BuildCommDCBW(ptr ptr) BuildCommDCB32W
|
|
|
|
117 stub CallNamedPipeA
|
|
|
|
118 stub CallNamedPipeW
|
|
|
|
119 stub Callback12
|
|
|
|
120 stub Callback16
|
|
|
|
121 stub Callback20
|
|
|
|
122 stub Callback24
|
|
|
|
123 stub Callback28
|
|
|
|
124 stub Callback32
|
|
|
|
125 stub Callback36
|
|
|
|
126 stub Callback40
|
|
|
|
127 stub Callback44
|
|
|
|
128 stub Callback48
|
|
|
|
129 stub Callback4
|
|
|
|
130 stub Callback52
|
|
|
|
131 stub Callback56
|
|
|
|
132 stub Callback60
|
|
|
|
133 stub Callback64
|
|
|
|
134 stub Callback8
|
|
|
|
135 stdcall ClearCommBreak(long) ClearCommBreak32
|
|
|
|
136 stdcall ClearCommError(long ptr ptr) ClearCommError
|
|
|
|
137 stdcall CloseHandle(long) CloseHandle
|
|
|
|
138 stub CloseProfileUserMapping
|
|
|
|
139 stub CloseSystemHandle
|
|
|
|
140 stub CommConfigDialogA
|
|
|
|
141 stub CommConfigDialogW
|
|
|
|
142 stdcall CompareFileTime(ptr ptr) CompareFileTime
|
|
|
|
143 stdcall CompareStringA(long long ptr long ptr long) CompareString32A
|
|
|
|
144 stdcall CompareStringW(long long ptr long ptr long) CompareString32W
|
|
|
|
145 stub ConnectNamedPipe
|
|
|
|
146 stdcall ContinueDebugEvent(long long long) ContinueDebugEvent
|
|
|
|
147 stub ConvertDefaultLocale
|
|
|
|
148 stdcall ConvertToGlobalHandle(long) ConvertToGlobalHandle
|
|
|
|
149 stdcall CopyFileA(ptr ptr long) CopyFile32A
|
|
|
|
150 stdcall CopyFileW(ptr ptr long) CopyFile32W
|
|
|
|
151 stub CreateConsoleScreenBuffer
|
|
|
|
152 stdcall CreateDirectoryA(ptr ptr) CreateDirectory32A
|
|
|
|
153 stdcall CreateDirectoryExA(ptr ptr ptr) CreateDirectoryEx32A
|
|
|
|
154 stdcall CreateDirectoryExW(ptr ptr ptr) CreateDirectoryEx32W
|
|
|
|
155 stdcall CreateDirectoryW(ptr ptr) CreateDirectory32W
|
|
|
|
156 stdcall CreateEventA(ptr long long ptr) CreateEvent32A
|
|
|
|
157 stdcall CreateEventW(ptr long long ptr) CreateEvent32W
|
|
|
|
158 stdcall CreateFileA(ptr long long ptr long long long) CreateFile32A
|
|
|
|
159 stdcall CreateFileMappingA(long ptr long long long ptr) CreateFileMapping32A
|
|
|
|
160 stdcall CreateFileMappingW(long ptr long long long ptr) CreateFileMapping32W
|
|
|
|
161 stdcall CreateFileW(ptr long long ptr long long long) CreateFile32W
|
|
|
|
162 stub CreateIoCompletionPort
|
|
|
|
163 stub CreateKernelThread
|
|
|
|
164 stub CreateMailslotA
|
|
|
|
165 stub CreateMailslotW
|
|
|
|
166 stdcall CreateMutexA(ptr long ptr) CreateMutex32A
|
|
|
|
167 stdcall CreateMutexW(ptr long ptr) CreateMutex32W
|
|
|
|
168 stub CreateNamedPipeA
|
|
|
|
169 stub CreateNamedPipeW
|
|
|
|
170 stub CreatePipe
|
|
|
|
171 stdcall CreateProcessA(ptr ptr ptr ptr long long ptr ptr ptr ptr) CreateProcess32A
|
|
|
|
172 stub CreateProcessW
|
|
|
|
173 stub CreateRemoteThread
|
|
|
|
174 stdcall CreateSemaphoreA(ptr long long ptr) CreateSemaphore32A
|
|
|
|
175 stdcall CreateSemaphoreW(ptr long long ptr) CreateSemaphore32W
|
|
|
|
176 stub CreateSocketHandle
|
|
|
|
177 stub CreateTapePartition
|
|
|
|
178 stdcall CreateThread(ptr long ptr long long ptr) CreateThread
|
|
|
|
179 stub CreateToolhelp32Snapshot
|
|
|
|
180 stub DebugActiveProcess
|
|
|
|
181 register DebugBreak() DebugBreak32
|
|
|
|
182 stub DefineDosDeviceA
|
|
|
|
183 stub DefineDosDeviceW
|
|
|
|
184 stdcall DeleteAtom(long) DeleteAtom32
|
|
|
|
185 stdcall DeleteCriticalSection(ptr) DeleteCriticalSection
|
|
|
|
186 stdcall DeleteFileA(ptr) DeleteFile32A
|
|
|
|
187 stdcall DeleteFileW(ptr) DeleteFile32W
|
|
|
|
188 stub DeviceIoControl
|
|
|
|
189 stdcall DisableThreadLibraryCalls(long) DisableThreadLibraryCalls
|
|
|
|
190 stub DisconnectNamedPipe
|
|
|
|
191 stdcall DosDateTimeToFileTime(long long ptr) DosDateTimeToFileTime
|
|
|
|
192 stdcall DuplicateHandle(long long long ptr long long long) DuplicateHandle
|
|
|
|
193 stub EndUpdateResourceA
|
|
|
|
194 stub EndUpdateResourceW
|
|
|
|
195 stdcall EnterCriticalSection(ptr) EnterCriticalSection
|
|
|
|
196 stub EnumCalendarInfoA
|
|
|
|
197 stub EnumCalendarInfoW
|
|
|
|
198 stub EnumDateFormatsA
|
|
|
|
199 stub EnumDateFormatsW
|
|
|
|
200 stdcall EnumResourceLanguagesA(long ptr ptr ptr long) EnumResourceLanguages32A
|
|
|
|
201 stdcall EnumResourceLanguagesW(long ptr ptr ptr long) EnumResourceLanguages32W
|
|
|
|
202 stdcall EnumResourceNamesA(long ptr ptr long) EnumResourceNames32A
|
|
|
|
203 stdcall EnumResourceNamesW(long ptr ptr long) EnumResourceNames32W
|
|
|
|
204 stdcall EnumResourceTypesA(long ptr long) EnumResourceTypes32A
|
|
|
|
205 stdcall EnumResourceTypesW(long ptr long) EnumResourceTypes32W
|
|
|
|
206 stdcall EnumSystemCodePagesA(ptr long) EnumSystemCodePages32A
|
|
|
|
207 stdcall EnumSystemCodePagesW(ptr long) EnumSystemCodePages32W
|
|
|
|
208 stdcall EnumSystemLocalesA(ptr long) EnumSystemLocales32A
|
|
|
|
209 stdcall EnumSystemLocalesW(ptr long) EnumSystemLocales32W
|
|
|
|
210 stub EnumTimeFormatsA
|
|
|
|
211 stub EnumTimeFormatsW
|
|
|
|
212 stub EraseTape
|
|
|
|
213 stdcall EscapeCommFunction(long long) EscapeCommFunction32
|
|
|
|
214 stdcall ExitProcess(long) ExitProcess
|
|
|
|
215 stub ExitThread
|
|
|
|
216 stdcall ExpandEnvironmentStringsA(ptr ptr long) ExpandEnvironmentStrings32A
|
|
|
|
217 stdcall ExpandEnvironmentStringsW(ptr ptr long) ExpandEnvironmentStrings32W
|
|
|
|
218 stub FT_Exit0
|
|
|
|
219 stub FT_Exit12
|
|
|
|
220 stub FT_Exit16
|
|
|
|
221 stub FT_Exit20
|
|
|
|
222 stub FT_Exit24
|
|
|
|
223 stub FT_Exit28
|
|
|
|
224 stub FT_Exit32
|
|
|
|
225 stub FT_Exit36
|
|
|
|
227 stub FT_Exit40
|
|
|
|
228 stub FT_Exit44
|
|
|
|
229 stub FT_Exit48
|
|
|
|
226 stub FT_Exit4
|
|
|
|
230 stub FT_Exit52
|
|
|
|
231 stub FT_Exit56
|
|
|
|
232 stub FT_Exit8
|
|
|
|
233 stub FT_Prolog
|
|
|
|
234 stub FT_Thunk
|
|
|
|
235 stdcall FatalAppExitA(long ptr) FatalAppExit32A
|
|
|
|
236 stdcall FatalAppExitW(long ptr) FatalAppExit32W
|
|
|
|
237 stub FatalExit
|
|
|
|
238 stdcall FileTimeToDosDateTime(ptr ptr ptr) FileTimeToDosDateTime
|
|
|
|
239 stdcall FileTimeToLocalFileTime(ptr ptr) FileTimeToLocalFileTime
|
|
|
|
240 stdcall FileTimeToSystemTime(ptr ptr) FileTimeToSystemTime
|
|
|
|
241 stub FillConsoleOutputAttribute
|
|
|
|
242 stub FillConsoleOutputCharacterA
|
|
|
|
243 stub FillConsoleOutputCharacterW
|
|
|
|
244 stdcall FindAtomA(ptr) FindAtom32A
|
|
|
|
245 stdcall FindAtomW(ptr) FindAtom32W
|
|
|
|
247 stub FindCloseChangeNotification
|
|
|
|
246 stdcall FindClose(long) FindClose32
|
|
|
|
248 stub FindFirstChangeNotificationA
|
|
|
|
249 stub FindFirstChangeNotificationW
|
|
|
|
250 stdcall FindFirstFileA(ptr ptr) FindFirstFile32A
|
|
|
|
251 stdcall FindFirstFileW(ptr ptr) FindFirstFile32W
|
|
|
|
252 stub FindNextChangeNotification
|
|
|
|
253 stdcall FindNextFileA(long ptr) FindNextFile32A
|
|
|
|
254 stdcall FindNextFileW(long ptr) FindNextFile32W
|
|
|
|
255 stdcall FindResourceA(long ptr ptr) FindResource32A
|
|
|
|
256 stdcall FindResourceExA(long ptr ptr long) FindResourceEx32A
|
|
|
|
257 stdcall FindResourceExW(long ptr ptr long) FindResourceEx32W
|
|
|
|
258 stdcall FindResourceW(long ptr ptr) FindResource32W
|
|
|
|
259 stdcall FlushConsoleInputBuffer(long) FlushConsoleInputBuffer
|
|
|
|
260 stdcall FlushFileBuffers(long) FlushFileBuffers
|
|
|
|
261 stub FlushInstructionCache
|
|
|
|
262 stub FlushViewOfFile
|
|
|
|
263 stub FoldStringA
|
|
|
|
264 stub FoldStringW
|
|
|
|
265 stdcall FormatMessageA(long ptr long long ptr long ptr) FormatMessage32A
|
|
|
|
266 stdcall FormatMessageW(long ptr long long ptr long ptr) FormatMessage32W
|
|
|
|
267 stub FreeConsole
|
|
|
|
268 stdcall FreeEnvironmentStringsA(ptr) FreeEnvironmentStrings32A
|
|
|
|
269 stdcall FreeEnvironmentStringsW(ptr) FreeEnvironmentStrings32W
|
|
|
|
270 stub FreeLSCallback
|
|
|
|
272 stub FreeLibraryAndExitThread
|
|
|
|
271 stdcall FreeLibrary(long) FreeLibrary32
|
|
|
|
273 stdcall FreeResource(long) FreeResource32
|
|
|
|
274 stub FreeSLCallback
|
|
|
|
275 stub GenerateConsoleCtrlEvent
|
|
|
|
276 stdcall GetACP() GetACP
|
|
|
|
277 stdcall GetAtomNameA(long ptr long) GetAtomName32A
|
|
|
|
278 stdcall GetAtomNameW(long ptr long) GetAtomName32W
|
|
|
|
279 stub GetBinaryType
|
|
|
|
280 stub GetBinaryTypeA
|
|
|
|
281 stub GetBinaryTypeW
|
|
|
|
282 stdcall GetCPInfo(long ptr) GetCPInfo
|
|
|
|
283 stub GetCommConfig
|
|
|
|
284 stdcall GetCommMask(long ptr) GetCommMask
|
|
|
|
285 stub GetCommModemStatus
|
|
|
|
286 stub GetCommProperties
|
|
|
|
287 stdcall GetCommState(long ptr) GetCommState32
|
|
|
|
288 stdcall GetCommTimeouts(long ptr) GetCommTimeouts
|
|
|
|
289 stdcall GetCommandLineA() GetCommandLine32A
|
|
|
|
290 stdcall GetCommandLineW() GetCommandLine32W
|
|
|
|
291 stub GetCompressedFileSizeA
|
|
|
|
292 stub GetCompressedFileSizeW
|
|
|
|
293 stdcall GetComputerNameA(ptr ptr) GetComputerName32A
|
|
|
|
294 stdcall GetComputerNameW(ptr ptr) GetComputerName32W
|
|
|
|
295 stdcall GetConsoleCP() GetConsoleCP
|
|
|
|
296 stub GetConsoleCursorInfo
|
|
|
|
297 stdcall GetConsoleMode(long ptr) GetConsoleMode
|
|
|
|
298 stdcall GetConsoleOutputCP() GetConsoleOutputCP
|
|
|
|
299 stdcall GetConsoleScreenBufferInfo(long ptr) GetConsoleScreenBufferInfo
|
|
|
|
300 stdcall GetConsoleTitleA(ptr long) GetConsoleTitle32A
|
|
|
|
301 stdcall GetConsoleTitleW(ptr long) GetConsoleTitle32W
|
|
|
|
302 stub GetCurrencyFormatA
|
|
|
|
303 stub GetCurrencyFormatW
|
|
|
|
304 stdcall GetCurrentDirectoryA(long ptr) GetCurrentDirectory32A
|
|
|
|
305 stdcall GetCurrentDirectoryW(long ptr) GetCurrentDirectory32W
|
|
|
|
306 stdcall GetCurrentProcess() GetCurrentProcess
|
|
|
|
307 stdcall GetCurrentProcessId() GetCurrentProcessId
|
|
|
|
308 stdcall GetCurrentThread() GetCurrentThread
|
|
|
|
309 stdcall GetCurrentThreadId() GetCurrentThreadId
|
|
|
|
310 stub GetDateFormatA
|
|
|
|
311 stub GetDateFormatW
|
|
|
|
312 stub GetDaylightFlag
|
|
|
|
313 stub GetDefaultCommConfigA
|
|
|
|
314 stub GetDefaultCommConfigW
|
|
|
|
315 stdcall GetDiskFreeSpaceA(ptr ptr ptr ptr ptr) GetDiskFreeSpace32A
|
|
|
|
316 stdcall GetDiskFreeSpaceW(ptr ptr ptr ptr ptr) GetDiskFreeSpace32W
|
|
|
|
317 stdcall GetDriveTypeA(ptr) GetDriveType32A
|
|
|
|
318 stdcall GetDriveTypeW(ptr) GetDriveType32W
|
|
|
|
320 stdcall GetEnvironmentStringsA() GetEnvironmentStrings32A
|
|
|
|
321 stdcall GetEnvironmentStringsW() GetEnvironmentStrings32W
|
|
|
|
319 stdcall GetEnvironmentStrings() GetEnvironmentStrings32A
|
|
|
|
322 stdcall GetEnvironmentVariableA(ptr ptr long) GetEnvironmentVariable32A
|
|
|
|
323 stdcall GetEnvironmentVariableW(ptr ptr long) GetEnvironmentVariable32W
|
|
|
|
324 stub GetErrorMode
|
|
|
|
325 stub GetExitCodeProcess
|
|
|
|
326 stdcall GetExitCodeThread(long ptr) GetExitCodeThread
|
|
|
|
327 stdcall GetFileAttributesA(ptr) GetFileAttributes32A
|
|
|
|
328 stdcall GetFileAttributesW(ptr) GetFileAttributes32W
|
|
|
|
329 stdcall GetFileInformationByHandle(long ptr) GetFileInformationByHandle
|
|
|
|
330 stdcall GetFileSize(long ptr) GetFileSize
|
|
|
|
331 stdcall GetFileTime(long ptr ptr ptr) GetFileTime
|
|
|
|
332 stdcall GetFileType(long) GetFileType
|
|
|
|
333 stdcall GetFullPathNameA(ptr long ptr ptr) GetFullPathName32A
|
|
|
|
334 stdcall GetFullPathNameW(ptr long ptr ptr) GetFullPathName32W
|
|
|
|
335 stub GetHandleContext
|
|
|
|
336 stub GetHandleInformation
|
|
|
|
337 stub GetLSCallbackTarget
|
|
|
|
338 stub GetLSCallbackTemplate
|
|
|
|
339 stdcall GetLargestConsoleWindowSize(long) GetLargestConsoleWindowSize
|
|
|
|
340 stdcall GetLastError() GetLastError
|
|
|
|
341 stdcall GetLocalTime(ptr) GetLocalTime
|
|
|
|
342 stdcall GetLocaleInfoA(long long ptr long) GetLocaleInfo32A
|
|
|
|
343 stdcall GetLocaleInfoW(long long ptr long) GetLocaleInfo32W
|
|
|
|
344 stdcall GetLogicalDriveStringsA(long ptr) GetLogicalDriveStrings32A
|
|
|
|
345 stdcall GetLogicalDriveStringsW(long ptr) GetLogicalDriveStrings32W
|
|
|
|
346 stdcall GetLogicalDrives() GetLogicalDrives
|
|
|
|
347 stub GetMailslotInfo
|
|
|
|
348 stdcall GetModuleFileNameA(long ptr long) GetModuleFileName32A
|
|
|
|
349 stdcall GetModuleFileNameW(long ptr long) GetModuleFileName32W
|
|
|
|
350 stdcall GetModuleHandleA(ptr) GetModuleHandle32A
|
|
|
|
351 stdcall GetModuleHandleW(ptr) GetModuleHandle32W
|
|
|
|
352 stub GetNamedPipeHandleStateA
|
|
|
|
353 stub GetNamedPipeHandleStateW
|
|
|
|
354 stub GetNamedPipeInfo
|
|
|
|
355 stub GetNumberFormatA
|
|
|
|
356 stub GetNumberFormatW
|
|
|
|
357 stdcall GetNumberOfConsoleInputEvents(long ptr) GetNumberOfConsoleInputEvents
|
|
|
|
358 stub GetNumberOfConsoleMouseButtons
|
|
|
|
359 stdcall GetOEMCP() GetOEMCP
|
|
|
|
360 stub GetOverlappedResult
|
|
|
|
361 stdcall GetPriorityClass(long) GetPriorityClass
|
|
|
|
362 stdcall GetPrivateProfileIntA(ptr ptr long ptr) GetPrivateProfileInt32A
|
|
|
|
363 stdcall GetPrivateProfileIntW(ptr ptr long ptr) GetPrivateProfileInt32W
|
|
|
|
364 stdcall GetPrivateProfileSectionA(ptr ptr long ptr) GetPrivateProfileSection32A
|
|
|
|
365 stub GetPrivateProfileSectionNamesA
|
|
|
|
366 stub GetPrivateProfileSectionNamesW
|
|
|
|
367 stub GetPrivateProfileSectionW
|
|
|
|
368 stdcall GetPrivateProfileStringA(ptr ptr ptr ptr long ptr) GetPrivateProfileString32A
|
|
|
|
369 stdcall GetPrivateProfileStringW(ptr ptr ptr ptr long ptr) GetPrivateProfileString32W
|
|
|
|
370 stub GetPrivateProfileStructA
|
|
|
|
371 stub GetPrivateProfileStructW
|
|
|
|
372 stdcall GetProcAddress(long ptr) GetProcAddress32
|
|
|
|
373 stdcall GetProcessAffinityMask(long ptr ptr) GetProcessAffinityMask
|
|
|
|
374 stub GetProcessFlags
|
|
|
|
375 stdcall GetProcessHeap() GetProcessHeap
|
|
|
|
376 stub GetProcessHeaps
|
|
|
|
377 stub GetProcessShutdownParameters
|
|
|
|
378 stdcall GetProcessTimes(long ptr ptr ptr ptr) GetProcessTimes
|
|
|
|
379 stdcall GetProcessVersion(long) GetProcessVersion
|
|
|
|
380 stdcall GetProcessWorkingSetSize(long ptr ptr) GetProcessWorkingSetSize
|
|
|
|
381 stub GetProductName
|
|
|
|
382 stdcall GetProfileIntA(ptr ptr long) GetProfileInt32A
|
|
|
|
383 stdcall GetProfileIntW(ptr ptr long) GetProfileInt32W
|
|
|
|
384 stdcall GetProfileSectionA(ptr ptr long) GetProfileSection32A
|
|
|
|
385 stub GetProfileSectionW
|
|
|
|
386 stdcall GetProfileStringA(ptr ptr ptr ptr long) GetProfileString32A
|
|
|
|
387 stdcall GetProfileStringW(ptr ptr ptr ptr long) GetProfileString32W
|
|
|
|
388 stub GetQueuedCompletionStatus
|
|
|
|
389 stub GetSLCallbackTarget
|
|
|
|
390 stub GetSLCallbackTemplate
|
|
|
|
391 stdcall GetShortPathNameA(ptr ptr long) GetShortPathName32A
|
|
|
|
392 stdcall GetShortPathNameW(ptr ptr long) GetShortPathName32W
|
|
|
|
393 stdcall GetStartupInfoA(ptr) GetStartupInfo32A
|
|
|
|
394 stdcall GetStartupInfoW(ptr) GetStartupInfo32W
|
|
|
|
395 stdcall GetStdHandle(long) GetStdHandle
|
|
|
|
396 stdcall GetStringTypeA(long long ptr long ptr) GetStringType32A
|
|
|
|
397 stdcall GetStringTypeExA(long long ptr long ptr) GetStringTypeEx32A
|
|
|
|
398 stdcall GetStringTypeExW(long long ptr long ptr) GetStringTypeEx32W
|
|
|
|
399 stdcall GetStringTypeW(long ptr long ptr) GetStringType32W
|
|
|
|
400 stdcall GetSystemDefaultLCID() GetSystemDefaultLCID
|
|
|
|
401 stdcall GetSystemDefaultLangID() GetSystemDefaultLangID
|
|
|
|
402 stdcall GetSystemDirectoryA(ptr long) GetSystemDirectory32A
|
|
|
|
403 stdcall GetSystemDirectoryW(ptr long) GetSystemDirectory32W
|
|
|
|
404 stdcall GetSystemInfo(ptr) GetSystemInfo
|
|
|
|
405 stdcall GetSystemPowerStatus(ptr) GetSystemPowerStatus
|
|
|
|
406 stdcall GetSystemTime(ptr) GetSystemTime
|
|
|
|
407 stub GetSystemTimeAdjustment
|
|
|
|
408 stub GetSystemTimeAsFileTime
|
|
|
|
409 stub GetTapeParameters
|
|
|
|
410 stub GetTapePosition
|
|
|
|
411 stub GetTapeStatus
|
|
|
|
412 stdcall GetTempFileNameA(ptr ptr long ptr) GetTempFileName32A
|
|
|
|
413 stdcall GetTempFileNameW(ptr ptr long ptr) GetTempFileName32W
|
|
|
|
414 stdcall GetTempPathA(long ptr) GetTempPath32A
|
|
|
|
415 stdcall GetTempPathW(long ptr) GetTempPath32W
|
|
|
|
416 stdcall GetThreadContext(long ptr) GetThreadContext
|
|
|
|
417 stdcall GetThreadLocale() GetThreadLocale
|
|
|
|
418 stdcall GetThreadPriority(long) GetThreadPriority
|
|
|
|
419 stdcall GetThreadSelectorEntry(long long ptr) GetThreadSelectorEntry
|
|
|
|
420 stub GetThreadTimes
|
|
|
|
421 stdcall GetTickCount() GetTickCount
|
|
|
|
422 stub GetTimeFormatA
|
|
|
|
423 stub GetTimeFormatW
|
|
|
|
424 stdcall GetTimeZoneInformation(ptr) GetTimeZoneInformation
|
|
|
|
425 stdcall GetUserDefaultLCID() GetUserDefaultLCID
|
|
|
|
426 stdcall GetUserDefaultLangID() GetUserDefaultLangID
|
|
|
|
427 stdcall GetVersion() GetVersion32
|
|
|
|
428 stdcall GetVersionExA(ptr) GetVersionEx32A
|
|
|
|
429 stdcall GetVersionExW(ptr) GetVersionEx32W
|
|
|
|
430 stdcall GetVolumeInformationA(ptr ptr long ptr ptr ptr ptr long) GetVolumeInformation32A
|
|
|
|
431 stdcall GetVolumeInformationW(ptr ptr long ptr ptr ptr ptr long) GetVolumeInformation32W
|
|
|
|
432 stdcall GetWindowsDirectoryA(ptr long) GetWindowsDirectory32A
|
|
|
|
433 stdcall GetWindowsDirectoryW(ptr long) GetWindowsDirectory32W
|
|
|
|
434 stdcall GlobalAddAtomA(ptr) GlobalAddAtom32A
|
|
|
|
435 stdcall GlobalAddAtomW(ptr) GlobalAddAtom32W
|
|
|
|
436 stdcall GlobalAlloc(long long) GlobalAlloc32
|
|
|
|
437 stdcall GlobalCompact(long) GlobalCompact32
|
|
|
|
438 stdcall GlobalDeleteAtom(long) GlobalDeleteAtom
|
|
|
|
439 stdcall GlobalFindAtomA(ptr) GlobalFindAtom32A
|
|
|
|
440 stdcall GlobalFindAtomW(ptr) GlobalFindAtom32W
|
|
|
|
441 stdcall GlobalFix(long) GlobalFix32
|
|
|
|
442 stdcall GlobalFlags(long) GlobalFlags32
|
|
|
|
443 stdcall GlobalFree(long) GlobalFree32
|
|
|
|
444 stdcall GlobalGetAtomNameA(long ptr long) GlobalGetAtomName32A
|
|
|
|
445 stdcall GlobalGetAtomNameW(long ptr long) GlobalGetAtomName32W
|
|
|
|
446 stdcall GlobalHandle(ptr) GlobalHandle32
|
|
|
|
447 stdcall GlobalLock(long) GlobalLock32
|
|
|
|
448 stdcall GlobalMemoryStatus(ptr) GlobalMemoryStatus
|
|
|
|
449 stdcall GlobalReAlloc(long long long) GlobalReAlloc32
|
|
|
|
450 stdcall GlobalSize(long) GlobalSize32
|
|
|
|
451 stdcall GlobalUnWire(long) GlobalUnWire32
|
|
|
|
452 stdcall GlobalUnfix(long) GlobalUnfix32
|
|
|
|
453 stdcall GlobalUnlock(long) GlobalUnlock32
|
|
|
|
454 stdcall GlobalWire(long) GlobalWire32
|
|
|
|
455 stub Heap32First
|
|
|
|
456 stub Heap32ListFirst
|
|
|
|
457 stub Heap32ListNext
|
|
|
|
458 stub Heap32Next
|
|
|
|
459 stdcall HeapAlloc(long long long) HeapAlloc
|
|
|
|
460 stdcall HeapCompact(long long) HeapCompact
|
|
|
|
461 stdcall HeapCreate(long long long) HeapCreate
|
|
|
|
462 stdcall HeapDestroy(long) HeapDestroy
|
|
|
|
463 stdcall HeapFree(long long ptr) HeapFree
|
|
|
|
464 stdcall HeapLock(long) HeapLock
|
|
|
|
465 stdcall HeapReAlloc(long long ptr long) HeapReAlloc
|
|
|
|
466 stub HeapSetFlags
|
|
|
|
467 stdcall HeapSize(long long ptr) HeapSize
|
|
|
|
468 stdcall HeapUnlock(long) HeapUnlock
|
|
|
|
469 stdcall HeapValidate(long long ptr) HeapValidate
|
|
|
|
470 stdcall HeapWalk(long ptr) HeapWalk
|
|
|
|
471 stub InitAtomTable
|
|
|
|
472 stdcall InitializeCriticalSection(ptr) InitializeCriticalSection
|
|
|
|
473 stdcall InterlockedDecrement(ptr) InterlockedDecrement
|
|
|
|
474 stdcall InterlockedExchange(ptr long) InterlockedExchange
|
|
|
|
475 stdcall InterlockedIncrement(ptr) InterlockedIncrement
|
|
|
|
476 stub InvalidateNLSCache
|
|
|
|
477 stdcall IsBadCodePtr(ptr) IsBadCodePtr32
|
|
|
|
478 stdcall IsBadHugeReadPtr(ptr long) IsBadHugeReadPtr32
|
|
|
|
479 stdcall IsBadHugeWritePtr(ptr long) IsBadHugeWritePtr32
|
|
|
|
480 stdcall IsBadReadPtr(ptr long) IsBadReadPtr32
|
|
|
|
481 stdcall IsBadStringPtrA(ptr long) IsBadStringPtr32A
|
|
|
|
482 stdcall IsBadStringPtrW(ptr long) IsBadStringPtr32W
|
|
|
|
483 stdcall IsBadWritePtr(ptr long) IsBadWritePtr32
|
|
|
|
484 stdcall IsDBCSLeadByte(long) IsDBCSLeadByte32
|
|
|
|
485 stdcall IsDBCSLeadByteEx(long long) IsDBCSLeadByteEx
|
|
|
|
486 stub IsLSCallback
|
|
|
|
487 stub IsSLCallback
|
|
|
|
488 stdcall IsValidCodePage(long) IsValidCodePage
|
|
|
|
489 stdcall IsValidLocale(long long) IsValidLocale
|
|
|
|
490 stub K32Thk1632Epilog
|
|
|
|
491 stub K32Thk1632Prolog
|
|
|
|
492 stdcall LCMapStringA(long long ptr long ptr long) LCMapString32A
|
|
|
|
493 stdcall LCMapStringW(long long ptr long ptr long) LCMapString32W
|
|
|
|
494 stdcall LeaveCriticalSection(ptr) LeaveCriticalSection
|
|
|
|
495 stdcall LoadLibraryA(ptr) LoadLibrary32A
|
|
|
|
496 stdcall LoadLibraryExA(ptr long long) LoadLibraryEx32A
|
|
|
|
497 stub LoadLibraryExW
|
|
|
|
498 stdcall LoadLibraryW(ptr) LoadLibrary32W
|
|
|
|
499 stub LoadModule
|
|
|
|
500 stdcall LoadResource(long long) LoadResource32
|
|
|
|
501 stdcall LocalAlloc(long long) LocalAlloc32
|
|
|
|
502 stdcall LocalCompact(long) LocalCompact32
|
|
|
|
503 stdcall LocalFileTimeToFileTime(ptr ptr) LocalFileTimeToFileTime
|
|
|
|
504 stdcall LocalFlags(long) LocalFlags32
|
|
|
|
505 stdcall LocalFree(long) LocalFree32
|
|
|
|
506 stdcall LocalHandle(ptr) LocalHandle32
|
|
|
|
507 stdcall LocalLock(long) LocalLock32
|
|
|
|
508 stdcall LocalReAlloc(long long long) LocalReAlloc32
|
|
|
|
509 stdcall LocalShrink(long long) LocalShrink32
|
|
|
|
510 stdcall LocalSize(long) LocalSize32
|
|
|
|
511 stdcall LocalUnlock(long) LocalUnlock32
|
|
|
|
512 stdcall LockFile(long long long long long) LockFile
|
|
|
|
513 stub LockFileEx
|
|
|
|
514 stdcall LockResource(long) LockResource32
|
|
|
|
515 stdcall MakeCriticalSectionGlobal(ptr) MakeCriticalSectionGlobal
|
|
|
|
516 stub MapHInstLS
|
|
|
|
517 stub MapHInstLS_PN
|
|
|
|
518 stub MapHInstSL
|
|
|
|
519 stub MapHInstSL_PN
|
|
|
|
520 stub MapHModuleLS
|
|
|
|
521 stub MapHModuleSL
|
|
|
|
522 stdcall MapLS(ptr) MapLS
|
|
|
|
523 stdcall MapSL(long) MapSL
|
|
|
|
524 stub MapSLFix
|
|
|
|
525 stdcall MapViewOfFile(long long long long long) MapViewOfFile
|
|
|
|
526 stdcall MapViewOfFileEx(long long long long long ptr) MapViewOfFileEx
|
|
|
|
527 stub Module32First
|
|
|
|
528 stub Module32Next
|
|
|
|
529 stdcall MoveFileA(ptr ptr) MoveFile32A
|
|
|
|
530 stdcall MoveFileExA(ptr ptr long) MoveFileEx32A
|
|
|
|
531 stdcall MoveFileExW(ptr ptr long) MoveFileEx32W
|
|
|
|
532 stdcall MoveFileW(ptr ptr) MoveFile32W
|
|
|
|
533 stdcall MulDiv(long long long) MulDiv32
|
|
|
|
534 stdcall MultiByteToWideChar(long long ptr long ptr long) MultiByteToWideChar
|
|
|
|
535 stub NotifyNLSUserCache
|
|
|
|
536 stdcall OpenEventA(long long ptr) OpenEvent32A
|
|
|
|
537 stdcall OpenEventW(long long ptr) OpenEvent32W
|
|
|
|
538 stdcall OpenFile(ptr ptr long) OpenFile32
|
|
|
|
539 stdcall OpenFileMappingA(long long ptr) OpenFileMapping32A
|
|
|
|
540 stdcall OpenFileMappingW(long long ptr) OpenFileMapping32W
|
|
|
|
541 stdcall OpenMutexA(long long ptr) OpenMutex32A
|
|
|
|
542 stdcall OpenMutexW(long long ptr) OpenMutex32W
|
|
|
|
543 stub OpenProcess
|
|
|
|
544 stub OpenProfileUserMapping
|
|
|
|
545 stdcall OpenSemaphoreA(long long ptr) OpenSemaphore32A
|
|
|
|
546 stdcall OpenSemaphoreW(long long ptr) OpenSemaphore32W
|
|
|
|
547 stub OpenVxDHandle
|
|
|
|
548 stdcall OutputDebugStringA(ptr) OutputDebugString32A
|
|
|
|
549 stdcall OutputDebugStringW(ptr) OutputDebugString32W
|
|
|
|
550 stub PeekConsoleInputA
|
|
|
|
551 stub PeekConsoleInputW
|
|
|
|
552 stub PeekNamedPipe
|
|
|
|
553 stub PostQueuedCompletionStatus
|
|
|
|
554 stub PrepareTape
|
|
|
|
555 stub Process32First
|
|
|
|
556 stub Process32Next
|
|
|
|
557 stub PulseEvent
|
|
|
|
558 stdcall PurgeComm(long long) PurgeComm
|
|
|
|
559 register QT_Thunk() QT_Thunk
|
|
|
|
560 stdcall QueryDosDeviceA(ptr ptr long) QueryDosDevice32A
|
|
|
|
561 stdcall QueryDosDeviceW(ptr ptr long) QueryDosDevice32W
|
|
|
|
562 stub QueryNumberOfEventLogRecords
|
|
|
|
563 stub QueryOldestEventLogRecord
|
|
|
|
564 stdcall QueryPerformanceCounter(ptr) QueryPerformanceCounter
|
|
|
|
565 stub QueryPerformanceFrequency
|
|
|
|
566 stub QueueUserAPC
|
|
|
|
567 register RaiseException(long long long ptr) RaiseException
|
|
|
|
568 stdcall ReadConsoleA(long ptr long ptr ptr) ReadConsole32A
|
|
|
|
569 stub ReadConsoleInputA
|
|
|
|
570 stub ReadConsoleInputW
|
|
|
|
571 stub ReadConsoleOutputA
|
|
|
|
572 stub ReadConsoleOutputAttribute
|
|
|
|
573 stub ReadConsoleOutputCharacterA
|
|
|
|
574 stub ReadConsoleOutputCharacterW
|
|
|
|
575 stub ReadConsoleOutputW
|
|
|
|
576 stdcall ReadConsoleW(long ptr long ptr ptr) ReadConsole32W
|
|
|
|
577 stdcall ReadFile(long ptr long ptr ptr) ReadFile
|
|
|
|
578 stub ReadFileEx
|
|
|
|
579 stdcall ReadProcessMemory(long ptr ptr long ptr) ReadProcessMemory
|
|
|
|
580 stub RegisterServiceProcess
|
|
|
|
581 stdcall ReinitializeCriticalSection(ptr) ReinitializeCriticalSection
|
|
|
|
582 stdcall ReleaseMutex(long) ReleaseMutex
|
|
|
|
583 stdcall ReleaseSemaphore(long long ptr) ReleaseSemaphore
|
|
|
|
584 stdcall RemoveDirectoryA(ptr) RemoveDirectory32A
|
|
|
|
585 stdcall RemoveDirectoryW(ptr) RemoveDirectory32W
|
|
|
|
586 stdcall ResetEvent(long) ResetEvent
|
|
|
|
587 stdcall ResumeThread(long) ResumeThread
|
|
|
|
588 stdcall RtlFillMemory(ptr long long) RtlFillMemory
|
|
|
|
589 stdcall RtlMoveMemory(ptr ptr long) RtlMoveMemory
|
|
|
|
590 register RtlUnwind(ptr long ptr long) RtlUnwind
|
|
|
|
591 stdcall RtlZeroMemory(ptr long) RtlZeroMemory
|
|
|
|
592 register SMapLS() SMapLS
|
|
|
|
593 register SMapLS_IP_EBP_12() SMapLS_IP_EBP_12
|
|
|
|
594 register SMapLS_IP_EBP_16() SMapLS_IP_EBP_16
|
|
|
|
595 register SMapLS_IP_EBP_20() SMapLS_IP_EBP_20
|
|
|
|
596 register SMapLS_IP_EBP_24() SMapLS_IP_EBP_24
|
|
|
|
597 register SMapLS_IP_EBP_28() SMapLS_IP_EBP_28
|
|
|
|
598 register SMapLS_IP_EBP_32() SMapLS_IP_EBP_32
|
|
|
|
599 register SMapLS_IP_EBP_36() SMapLS_IP_EBP_36
|
|
|
|
600 register SMapLS_IP_EBP_40() SMapLS_IP_EBP_40
|
|
|
|
601 register SMapLS_IP_EBP_8() SMapLS_IP_EBP_8
|
|
|
|
602 stub SUnMapLS
|
|
|
|
603 stub SUnMapLS_IP_EBP_12
|
|
|
|
604 stub SUnMapLS_IP_EBP_16
|
|
|
|
605 stub SUnMapLS_IP_EBP_20
|
|
|
|
606 stub SUnMapLS_IP_EBP_24
|
|
|
|
607 stub SUnMapLS_IP_EBP_28
|
|
|
|
608 stub SUnMapLS_IP_EBP_32
|
|
|
|
609 stub SUnMapLS_IP_EBP_36
|
|
|
|
610 stub SUnMapLS_IP_EBP_40
|
|
|
|
611 stub SUnMapLS_IP_EBP_8
|
|
|
|
612 stub ScrollConsoleScreenBufferA
|
|
|
|
613 stub ScrollConsoleScreenBufferW
|
|
|
|
614 stdcall SearchPathA(ptr ptr ptr long ptr ptr) SearchPath32A
|
|
|
|
615 stdcall SearchPathW(ptr ptr ptr long ptr ptr) SearchPath32W
|
|
|
|
616 stdcall SetCommBreak(long) SetCommBreak32
|
|
|
|
617 stub SetCommConfig
|
|
|
|
618 stdcall SetCommMask(long ptr) SetCommMask
|
|
|
|
619 stdcall SetCommState(long ptr) SetCommState32
|
|
|
|
620 stdcall SetCommTimeouts(long ptr) SetCommTimeouts
|
|
|
|
621 stub SetComputerNameA
|
|
|
|
622 stub SetComputerNameW
|
|
|
|
623 stub SetConsoleActiveScreenBuffer
|
|
|
|
624 stub SetConsoleCP
|
|
|
|
625 stdcall SetConsoleCtrlHandler(ptr long) SetConsoleCtrlHandler
|
|
|
|
626 stub SetConsoleCursorInfo
|
|
|
|
627 stdcall SetConsoleCursorPosition(long long) SetConsoleCursorPosition
|
|
|
|
628 stdcall SetConsoleMode(long long) SetConsoleMode
|
|
|
|
629 stub SetConsoleOutputCP
|
|
|
|
630 stub SetConsoleScreenBufferSize
|
|
|
|
631 stub SetConsoleTextAttribute
|
|
|
|
632 stdcall SetConsoleTitleA(ptr) SetConsoleTitle32A
|
|
|
|
633 stdcall SetConsoleTitleW(ptr) SetConsoleTitle32W
|
|
|
|
634 stub SetConsoleWindowInfo
|
|
|
|
635 stdcall SetCurrentDirectoryA(ptr) SetCurrentDirectory32A
|
|
|
|
636 stdcall SetCurrentDirectoryW(ptr) SetCurrentDirectory32W
|
|
|
|
637 stub SetDaylightFlag
|
|
|
|
638 stub SetDefaultCommConfigA
|
|
|
|
639 stub SetDefaultCommConfigW
|
|
|
|
640 stdcall SetEndOfFile(long) SetEndOfFile
|
|
|
|
641 stdcall SetEnvironmentVariableA(ptr ptr) SetEnvironmentVariable32A
|
|
|
|
642 stdcall SetEnvironmentVariableW(ptr ptr) SetEnvironmentVariable32W
|
|
|
|
643 stdcall SetErrorMode(long) SetErrorMode32
|
|
|
|
644 stdcall SetEvent(long) SetEvent
|
|
|
|
645 stdcall SetFileApisToANSI() SetFileApisToANSI
|
|
|
|
646 stdcall SetFileApisToOEM() SetFileApisToOEM
|
|
|
|
647 stdcall SetFileAttributesA(ptr long) SetFileAttributes32A
|
|
|
|
648 stdcall SetFileAttributesW(ptr long) SetFileAttributes32W
|
|
|
|
649 stdcall SetFilePointer(long long ptr long) SetFilePointer
|
|
|
|
650 stdcall SetFileTime(long ptr ptr ptr) SetFileTime
|
|
|
|
651 stub SetHandleContext
|
|
|
|
652 stdcall SetHandleCount(long) SetHandleCount32
|
|
|
|
653 stub SetHandleInformation
|
|
|
|
654 stdcall SetLastError(long) SetLastError
|
|
|
|
655 stub SetLocalTime
|
|
|
|
656 stdcall SetLocaleInfoA(long long ptr) SetLocaleInfoA
|
|
|
|
657 stub SetLocaleInfoW
|
|
|
|
658 stub SetMailslotInfo
|
|
|
|
659 stub SetNamedPipeHandleState
|
|
|
|
660 stdcall SetPriorityClass(long long) SetPriorityClass
|
|
|
|
661 stdcall SetProcessShutdownParameters(long long) SetProcessShutdownParameters
|
|
|
|
662 stdcall SetProcessWorkingSetSize(long long long) SetProcessWorkingSetSize
|
|
|
|
663 stdcall SetStdHandle(long long) SetStdHandle
|
|
|
|
664 stdcall SetSystemPowerState(long long) SetSystemPowerState
|
|
|
|
665 stdcall SetSystemTime(ptr) SetSystemTime
|
|
|
|
666 stub SetSystemTimeAdjustment
|
|
|
|
667 stub SetTapeParameters
|
|
|
|
668 stub SetTapePosition
|
|
|
|
669 stdcall SetThreadAffinityMask(long long) SetThreadAffinityMask
|
|
|
|
670 stub SetThreadContext
|
|
|
|
671 stub SetThreadLocale
|
|
|
|
672 stdcall SetThreadPriority(long long) SetThreadPriority
|
|
|
|
673 stdcall SetTimeZoneInformation(ptr) SetTimeZoneInformation
|
|
|
|
674 stdcall SetUnhandledExceptionFilter(ptr) SetUnhandledExceptionFilter
|
|
|
|
675 stub SetVolumeLabelA
|
|
|
|
676 stub SetVolumeLabelW
|
|
|
|
677 stdcall SetupComm(long long long) SetupComm
|
|
|
|
678 stdcall SizeofResource(long long) SizeofResource32
|
|
|
|
679 stdcall Sleep(long) Sleep
|
|
|
|
680 stub SleepEx
|
|
|
|
681 stub SuspendThread
|
|
|
|
682 stdcall SystemTimeToFileTime(ptr ptr) SystemTimeToFileTime
|
|
|
|
683 stub SystemTimeToTzSpecificLocalTime
|
|
|
|
684 stub TerminateProcess
|
|
|
|
685 stdcall TerminateThread(long long) TerminateThread
|
|
|
|
686 stub Thread32First
|
|
|
|
687 stub Thread32Next
|
|
|
|
688 stdcall ThunkConnect32(ptr ptr ptr ptr ptr ptr) ThunkConnect32
|
|
|
|
689 stdcall TlsAlloc() TlsAlloc
|
|
|
|
690 stub TlsAllocInternal
|
|
|
|
691 stdcall TlsFree(long) TlsFree
|
|
|
|
692 stub TlsFreeInternal
|
|
|
|
693 stdcall TlsGetValue(long) TlsGetValue
|
|
|
|
694 stdcall TlsSetValue(long ptr) TlsSetValue
|
|
|
|
695 stub Toolhelp32ReadProcessMemory
|
|
|
|
696 stub TransactNamedPipe
|
|
|
|
697 stdcall TransmitCommChar(long long) TransmitCommChar32
|
|
|
|
698 stdcall UTRegister(long ptr ptr ptr ptr ptr ptr) UTRegister
|
|
|
|
699 stdcall UTUnRegister(long) UTUnRegister
|
|
|
|
700 stdcall UnMapLS(long) UnMapLS
|
|
|
|
701 stub UnMapSLFixArray
|
|
|
|
702 stdcall UnhandledExceptionFilter(ptr) UnhandledExceptionFilter
|
|
|
|
703 stub UninitializeCriticalSection
|
|
|
|
704 stdcall UnlockFile(long long long long long) UnlockFile
|
|
|
|
705 stub UnlockFileEx
|
|
|
|
706 stdcall UnmapViewOfFile(ptr) UnmapViewOfFile
|
|
|
|
707 stub UpdateResourceA
|
|
|
|
708 stub UpdateResourceW
|
|
|
|
709 stub VerLanguageNameA
|
|
|
|
710 stub VerLanguageNameW
|
|
|
|
711 stdcall VirtualAlloc(ptr long long long) VirtualAlloc
|
|
|
|
712 stdcall VirtualFree(ptr long long) VirtualFree
|
|
|
|
713 stdcall VirtualLock(ptr long) VirtualLock
|
|
|
|
714 stdcall VirtualProtect(ptr long long ptr) VirtualProtect
|
|
|
|
715 stdcall VirtualProtectEx(long ptr long long ptr) VirtualProtectEx
|
|
|
|
716 stdcall VirtualQuery(ptr ptr long) VirtualQuery
|
|
|
|
717 stdcall VirtualQueryEx(long ptr ptr long) VirtualQueryEx
|
|
|
|
718 stdcall VirtualUnlock(ptr long) VirtualUnlock
|
|
|
|
719 stub WaitCommEvent
|
|
|
|
720 stub WaitForDebugEvent
|
|
|
|
721 stub WaitForMultipleObjects
|
|
|
|
722 stub WaitForMultipleObjectsEx
|
|
|
|
723 stdcall WaitForSingleObject(long long) WaitForSingleObject
|
|
|
|
724 stdcall WaitForSingleObjectEx(long long long) WaitForSingleObjectEx
|
|
|
|
725 stub WaitNamedPipeA
|
|
|
|
726 stub WaitNamedPipeW
|
|
|
|
727 stdcall WideCharToMultiByte(long long ptr long ptr long ptr ptr) WideCharToMultiByte
|
|
|
|
728 stdcall WinExec(ptr long) WinExec32
|
|
|
|
729 stdcall WriteConsoleA(long ptr long ptr ptr) WriteConsole32A
|
|
|
|
730 stub WriteConsoleInputA
|
|
|
|
731 stub WriteConsoleInputW
|
|
|
|
732 stub WriteConsoleOutputA
|
|
|
|
733 stub WriteConsoleOutputAttribute
|
|
|
|
734 stub WriteConsoleOutputCharacterA
|
|
|
|
735 stub WriteConsoleOutputCharacterW
|
|
|
|
736 stub WriteConsoleOutputW
|
|
|
|
737 stdcall WriteConsoleW(long ptr long ptr ptr) WriteConsole32W
|
|
|
|
738 stdcall WriteFile(long ptr long ptr ptr) WriteFile
|
|
|
|
739 stub WriteFileEx
|
|
|
|
740 stub WritePrivateProfileSectionA
|
|
|
|
741 stub WritePrivateProfileSectionW
|
|
|
|
742 stdcall WritePrivateProfileStringA(ptr ptr ptr ptr) WritePrivateProfileString32A
|
|
|
|
743 stdcall WritePrivateProfileStringW(ptr ptr ptr ptr) WritePrivateProfileString32W
|
|
|
|
744 stub WritePrivateProfileStructA
|
|
|
|
745 stub WritePrivateProfileStructW
|
|
|
|
746 stub WriteProcessMemory
|
|
|
|
747 stub WriteProfileSectionA
|
|
|
|
748 stub WriteProfileSectionW
|
|
|
|
749 stdcall WriteProfileStringA(ptr ptr ptr) WriteProfileString32A
|
|
|
|
750 stdcall WriteProfileStringW(ptr ptr ptr) WriteProfileString32W
|
|
|
|
751 stub WriteTapemark
|
|
|
|
752 stub _DebugOut
|
|
|
|
753 stub _DebugPrintf
|
|
|
|
754 stdcall _hread(long ptr long) _hread32
|
|
|
|
755 stdcall _hwrite(long ptr long) _hwrite32
|
|
|
|
756 stdcall _lclose(long) _lclose32
|
|
|
|
757 stdcall _lcreat(ptr long) _lcreat32
|
|
|
|
758 stdcall _llseek(long long long) _llseek32
|
|
|
|
759 stdcall _lopen(ptr long) _lopen32
|
|
|
|
760 stdcall _lread(long ptr long) _lread32
|
|
|
|
761 stdcall _lwrite(long ptr long) _lwrite32
|
|
|
|
762 stub dprintf
|
|
|
|
763 stdcall lstrcat(ptr ptr) lstrcat32A
|
|
|
|
764 stdcall lstrcatA(ptr ptr) lstrcat32A
|
|
|
|
765 stdcall lstrcatW(ptr ptr) lstrcat32W
|
|
|
|
766 stdcall lstrcmp(ptr ptr) lstrcmp32A
|
|
|
|
767 stdcall lstrcmpA(ptr ptr) lstrcmp32A
|
|
|
|
768 stdcall lstrcmpW(ptr ptr) lstrcmp32W
|
|
|
|
769 stdcall lstrcmpi(ptr ptr) lstrcmpi32A
|
|
|
|
770 stdcall lstrcmpiA(ptr ptr) lstrcmpi32A
|
|
|
|
771 stdcall lstrcmpiW(ptr ptr) lstrcmpi32W
|
|
|
|
772 stdcall lstrcpy(ptr ptr) lstrcpy32A
|
|
|
|
773 stdcall lstrcpyA(ptr ptr) lstrcpy32A
|
|
|
|
774 stdcall lstrcpyW(ptr ptr) lstrcpy32W
|
|
|
|
775 stdcall lstrcpyn(ptr ptr long) lstrcpyn32A
|
|
|
|
776 stdcall lstrcpynA(ptr ptr long) lstrcpyn32A
|
|
|
|
777 stdcall lstrcpynW(ptr ptr long) lstrcpyn32W
|
|
|
|
778 stdcall lstrlen(ptr) lstrlen32A
|
|
|
|
779 stdcall lstrlenA(ptr) lstrlen32A
|
|
|
|
780 stdcall lstrlenW(ptr) lstrlen32W
|
1997-06-16 17:43:53 +00:00
|
|
|
#
|
|
|
|
# Functions exported by kernel32.dll in NT 3.51
|
|
|
|
#
|
Release 970914
Thu Sep 11 18:24:56 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [objects/dc.c]
In DC_SetupGCForPatBlt, replace R2_NOT by GXxor with (black xor white).
Tue Sep 9 23:04:02 1997 U. Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
* [memory/virtual.c]
Do not write debugging info unconditionally to stderr.
* [files/profile.c]
Call PROFILE_GetSection in PROFILE_GetString for key_name "" too.
* [misc/crtdll.c]
Many new functions.
* [include/windows.h] [windows/winpos.c]
ClientToScreen16 doesn't have a return value.
Sun Sep 7 10:06:39 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [misc/main.c] [AUTHORS]
Update the list of contributors. Please let me know if I forgot
someone.
* [if1632/*.spec] [if1632/builtin.c] [tools/build.c]
Ordinal base for Win32 DLLs is now computed automatically from the
lowest ordinal found.
* [include/wintypes.h]
WINAPI is now defined as attribute((stdcall)). This will require
gcc to compile.
* [if1632/thunk.c]
Removed Win32 thunks (no longer needed with stdcall).
* [if1632/crtdll.spec] [misc/crtdll.c]
Make sure we only reference cdecl functions in the spec file.
* [objects/dc.c]
Use CapNotLast drawing style for 1-pixel wide lines.
* [tools/build.c]
Added 'double' argument type.
Added 'varargs' function type for Win32.
Made CallTo16_xxx functions stdcall.
Fri Sep 5 14:50:49 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [tools/build.c] [windows/win.c] [windows/event.c] [windows/message.c]
More fixes to get message exchange closer to the original.
* [misc/spy.c]
Message logs now contain window names.
* [loader/resource.c] [loader/ne_resource.c] [loader/task.c]
[objects/cursoricon.c] [windows/user.c]
Added some obscure features to fix memory leaks.
Fri Sep 5 00:46:28 1997 Jan Willamowius <jan@janhh.shnet.org>
* [if1632/kernel32.spec] [win32/newfns.c]
Added stub for UTRegister() and UTUnRegister().
Thu Sep 4 12:03:12 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c]
Allow ASCII codes > 127 in WM_CHAR.
Mon Sep 1 17:23:24 1997 Dimitrie O. Paun <dimi@mail.cs.toronto.edu>
* [controls/widgets.c]
In InitCommonControls, remember the name of the class
because lpszClassName was made to point to a local array
Added the ProgressBar to the list of implemented controls.
Call InitCommonControls from WIDGETS_Init to register all
implemented Common Controls.
* [include/commctrl.h]
Added misc decl for the Progress Bar.
* [controls/progress.c] [include/progress.h]
First attempt at implementiong the Progress Bar class.
* [objects/brush.h]
Implementation for GetSysColorBrush[16|32]
* [controls/status.c]
Use DrawEdge to draw the borders and fill the background
* [controls/uitools.c]
Added DrawDiagEdge32 and DrawRectEdge32
* [graphics/painting.c]
Implement DrawEdge[16|32]
Started DrawFrameControl32
Mon Sep 1 10:07:09 1997 Lawson Whitney <lawson_whitney@juno.com>
* [misc/comm.c] [include/windows.h]
SetCommEventMask returns a SEGPTR.
Sun Aug 31 23:28:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][loader/module.c][include/pe_image.h]
[include/module.h]
Cleaned up the whole Win32 library mess (a bit).
* [debugger/stabs.c]
If 'wine' has no absolute path and isn't found, check $PATH too.
* [misc/ole2nls.c]
Some fixes.
* [misc/ver.c]
Added support for PE style version resources.
* [memory/string.c]
Check for NULL pointers to _lstr* functions, just as Windows95 does.
* [multimedia/time.c]
Made list of timers a simple linked list.
* [loader/resource.c]
Netscape 3 seems to pass NEGATIVE resource Ids (in an
unsigned int, yes). Don't know why, fixed it anyway.
* [objects/bitmap.c]
LoadImageW added.
* [include/win.h][windows/win.c]
Change wIDmenu from UINT16 to UINT32 and changed the
SetWindow(Long|Word) accordingly.
Thu Aug 28 19:30:08 1997 Morten Welinder <terra@diku.dk>
* [include/windows.h]
Add a few more colors defined for Win95.
Add a few more brush styles.
* [windows/syscolor.c]
Add error checks for SYSCOLOR_SetColor, SYSCOLOR_Init,
GetSysColor16, GetSysColor32. Add support for above colors.
Sun Aug 24 16:22:57 1997 Andrew Taylor <andrew@riscan.com>
* [multimedia/mmsystem.c]
Changed mmioDescend to use mmio functions for file I/O, neccessary
for memory files.
1997-09-14 17:17:23 +00:00
|
|
|
781 stub AddConsoleAliasA
|
|
|
|
782 stub AddConsoleAliasW
|
|
|
|
783 stub BaseAttachCompleteThunk
|
|
|
|
784 stub BasepDebugDump
|
|
|
|
785 stub CloseConsoleHandle
|
|
|
|
786 stub CmdBatNotification
|
|
|
|
787 stub ConsoleMenuControl
|
|
|
|
788 stub ConsoleSubst
|
|
|
|
789 stub CreateVirtualBuffer
|
|
|
|
790 stub ExitVDM
|
|
|
|
791 stub ExpungeConsoleCommandHistoryA
|
|
|
|
792 stub ExpungeConsoleCommandHistoryW
|
|
|
|
793 stub ExtendVirtualBuffer
|
|
|
|
794 stub FreeVirtualBuffer
|
|
|
|
795 stub GetConsoleAliasA
|
|
|
|
796 stub GetConsoleAliasExesA
|
|
|
|
797 stub GetConsoleAliasExesLengthA
|
|
|
|
798 stub GetConsoleAliasExesLengthW
|
|
|
|
799 stub GetConsoleAliasExesW
|
|
|
|
800 stub GetConsoleAliasW
|
|
|
|
801 stub GetConsoleAliasesA
|
|
|
|
802 stub GetConsoleAliasesLengthA
|
|
|
|
803 stub GetConsoleAliasesLengthW
|
|
|
|
804 stub GetConsoleAliasesW
|
|
|
|
805 stub GetConsoleCommandHistoryA
|
|
|
|
806 stub GetConsoleCommandHistoryLengthA
|
|
|
|
807 stub GetConsoleCommandHistoryLengthW
|
|
|
|
808 stub GetConsoleCommandHistoryW
|
|
|
|
811 stub GetConsoleDisplayMode
|
|
|
|
812 stub GetConsoleFontInfo
|
|
|
|
813 stub GetConsoleFontSize
|
|
|
|
814 stub GetConsoleHardwareState
|
|
|
|
815 stub GetConsoleInputWaitHandle
|
|
|
|
816 stub GetCurrentConsoleFont
|
|
|
|
817 stub GetNextVDMCommand
|
|
|
|
818 stub GetNumberOfConsoleFonts
|
|
|
|
819 stub GetVDMCurrentDirectories
|
|
|
|
820 stub HeapCreateTagsW
|
|
|
|
821 stub HeapExtend
|
|
|
|
822 stub HeapQueryTagW
|
|
|
|
824 stub HeapSummary
|
|
|
|
825 stub HeapUsage
|
|
|
|
826 stub InvalidateConsoleDIBits
|
|
|
|
827 stub IsDebuggerPresent
|
|
|
|
829 stub OpenConsoleW
|
|
|
|
830 stub QueryWin31IniFilesMappedToRegistry
|
|
|
|
831 stub RegisterConsoleVDM
|
|
|
|
832 stub RegisterWaitForInputIdle
|
|
|
|
833 stub RegisterWowBaseHandlers
|
|
|
|
834 stub RegisterWowExec
|
|
|
|
835 stub SetConsoleCommandHistoryMode
|
|
|
|
836 stub SetConsoleCursor
|
|
|
|
837 stub SetConsoleDisplayMode
|
|
|
|
838 stub SetConsoleFont
|
|
|
|
839 stub SetConsoleHardwareState
|
|
|
|
840 stub SetConsoleKeyShortcuts
|
|
|
|
841 stub SetConsoleMaximumWindowSize
|
|
|
|
842 stub SetConsoleMenuClose
|
|
|
|
843 stub SetConsoleNumberOfCommandsA
|
|
|
|
844 stub SetConsoleNumberOfCommandsW
|
|
|
|
845 stub SetConsolePalette
|
|
|
|
846 stub SetLastConsoleEventActive
|
|
|
|
847 stub SetVDMCurrentDirectories
|
|
|
|
848 stub ShowConsoleCursor
|
|
|
|
849 stub TrimVirtualBuffer
|
|
|
|
850 stub VDMConsoleOperation
|
|
|
|
851 stub VDMOperationStarted
|
|
|
|
852 stub VerifyConsoleIoHandle
|
|
|
|
853 stub VirtualBufferExceptionHandler
|
|
|
|
854 stub WriteConsoleInputVDMA
|
|
|
|
855 stub WriteConsoleInputVDMW
|