forked from wine-mirror/wine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mon May 23 15:07:36 1994 Bob Amstadt (bob@pooh) * [loader/selector.c] Allocate heap and stack segments as 64k. Sat May 21 01:15:49 1994 Rick Sladkey ([email protected]) * [loader/selector.c] Correct typos where memcpy is used instead of memset. * [loader/resource.c] Allow for legitimate cases where biSizeImage is 0 in LoadIcon by calculating the value when the bitmap is not compressed. * [miscemu/int21.c] Fix NULL dereference caused by superfluous DOS_closedir in FindNext. * [loader/resource.c] New function type_match to handle string resource types as well as IDs. In addition, compare only low 4 bits of type_id when both numbers are IDs so that 0x0002 matches 0x8002. In FindResourceByNumber and FindResourceByName use type_match instead of comparing numbers. In FindResource handle the "#number" syntax and empty strings in both the resource and type names. Mon May 23 00:48:25 1994 Rick Sladkey ([email protected]) * [windows/dialog.c] Fix inadvertent printing of string IDs as strings. May 23, 94 [email protected] (Martin Ayotte) * [controls/menu.c] New functions GetMenuItemCount(), GetMenuItemID(). GetMenuString() & HiliteMenuItem(). Bug fix in CheckMenuItem(). Function SetMenu() now make client area recalc if menu removed. * [windows/winpos.c] Bug fix in SetWindowPos(), no more XMapping or XConfiguring of windows with initial width or height equal zero. * [objects/gdiobj.c] New function EnumObjects(), using new lpPenBrushList buildup from calls to new function GDI_AppendToPenBrushList(). ('pbrush.exe' don't show its face yet ! ... :-( ) New EMPTY STUB for function SetObjectOwner(), ('mplayer.exe' call it via GetProcAddress() ...) * [objects/font.c] New internal functions ParseFontParms() & InitFontsList(). EnumFonts() & EnumFontFamilies() enumerates fonts (no more dummies). FONT_MatchFont now make retries to find closest-smallest font. ('charmap.exe' can now show the differents fonts available) * [windows/nonclient.c] Use small dos OBM_OLD_CLOSE button for MDI windows. * [windows/graphics.c] [objects/bitmap.c] Start to remove obsolete globals such XT_screen ... * [loader/library.c] Make function GetProcAddress() working also with builtin DLLs. Tue May 24 20:18:02 1994 Erik Bos ([email protected]) * [if1632/system.spec] [if1632/toolhelp.spec] system.dll & toolhelp.dll added. * [loader/library.c] Modified GetModuleFileName() to return the full filename. Added a check to LoadLibrary() to prevent loading built in dlls. (eg. user.exe) Added a check to FreeLibrary() to prevent built-in dlls from being freed. Modified GetProcAddress() to support builtin dlls. * [loader/signal.c] [miscemu/int2f.c] Added => pifedit runs. * [misc/dos_fs.c] Added a NULL-ptr check to DOS_closedir().
- Loading branch information
Showing
40 changed files
with
1,408 additions
and
536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,89 @@ | ||
---------------------------------------------------------------------- | ||
Mon May 23 15:07:36 1994 Bob Amstadt (bob@pooh) | ||
|
||
* [loader/selector.c] | ||
Allocate heap and stack segments as 64k. | ||
|
||
Sat May 21 01:15:49 1994 Rick Sladkey ([email protected]) | ||
|
||
* [loader/selector.c] | ||
Correct typos where memcpy is used instead of memset. | ||
|
||
* [loader/resource.c] | ||
Allow for legitimate cases where biSizeImage is 0 in LoadIcon | ||
by calculating the value when the bitmap is not compressed. | ||
|
||
* [miscemu/int21.c] | ||
Fix NULL dereference caused by superfluous DOS_closedir in FindNext. | ||
|
||
* [loader/resource.c] | ||
New function type_match to handle string resource types as | ||
well as IDs. In addition, compare only low 4 bits of type_id | ||
when both numbers are IDs so that 0x0002 matches 0x8002. | ||
In FindResourceByNumber and FindResourceByName use type_match | ||
instead of comparing numbers. In FindResource handle the | ||
"#number" syntax and empty strings in both the resource and | ||
type names. | ||
|
||
Mon May 23 00:48:25 1994 Rick Sladkey ([email protected]) | ||
|
||
* [windows/dialog.c] | ||
Fix inadvertent printing of string IDs as strings. | ||
|
||
May 16, 94 [email protected] (Martin Ayotte) | ||
|
||
* [controls/menu.c] | ||
New functions GetMenuItemCount(), GetMenuItemID(). | ||
GetMenuString() & HiliteMenuItem(). | ||
Bug fix in CheckMenuItem(). | ||
Function SetMenu() now make client area recalc if menu removed. | ||
|
||
* [windows/winpos.c] | ||
Bug fix in SetWindowPos(), no more XMapping or XConfiguring of | ||
windows with initial width or height equal zero. | ||
|
||
* [objects/gdiobj.c] | ||
New function EnumObjects(), using new lpPenBrushList buildup | ||
from calls to new function GDI_AppendToPenBrushList(). | ||
('pbrush.exe' don't show its face yet ! ... :-( ) | ||
New EMPTY STUB for function SetObjectOwner(), | ||
('mplayer.exe' call it via GetProcAddress() ...) | ||
|
||
* [objects/font.c] | ||
New internal functions ParseFontParms() & InitFontsList(). | ||
EnumFonts() & EnumFontFamilies() enumerates fonts (no more dummies). | ||
FONT_MatchFont now make retries to find closest-smallest font. | ||
('charmap.exe' can now show the differents fonts available) | ||
|
||
* [windows/nonclient.c] | ||
Use small dos OBM_OLD_CLOSE button for MDI windows. | ||
|
||
* [windows/graphics.c] [objects/bitmap.c] | ||
Start to remove obsolete globals such XT_screen ... | ||
|
||
* [loader/library.c] | ||
Make function GetProcAddress() working also with builtin DLLs. | ||
|
||
Tue May 24 20:18:02 1994 Erik Bos ([email protected]) | ||
|
||
* [if1632/system.spec] [if1632/toolhelp.spec] | ||
system.dll & toolhelp.dll added. | ||
|
||
* [loader/library.c] | ||
Modified GetModuleFileName() to return the full | ||
filename. | ||
Added a check to LoadLibrary() to prevent loading | ||
built in dlls. (eg. user.exe) | ||
Added a check to FreeLibrary() to prevent built-in | ||
dlls from being freed. | ||
Modified GetProcAddress() to support builtin dlls. | ||
|
||
* [loader/signal.c] [miscemu/int2f.c] | ||
Added => pifedit runs. | ||
|
||
* [misc/dos_fs.c] | ||
Added a NULL-ptr check to DOS_closedir(). | ||
|
||
---------------------------------------------------------------------- | ||
Tue May 17 23:03:16 1994 Bob Amstadt (bob@pooh) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,30 @@ | ||
All code unless stated otherwise is covered by the GNU Pubic License. | ||
You may without charge, royalty or other payment, copy and | ||
distribute copies of this work and derivative works of this work | ||
in source or binary form provided that: (1) | ||
you appropriately publish on each copy an appropriate copyright | ||
notice; (2) faithfully reproduce all prior copyright notices | ||
included in the original work (you may also add your own | ||
copyright notice); and (3) agree to indemnify and hold all prior | ||
authors, copyright holders and licensors of the work harmless | ||
from and against all damages arising from use of the work. | ||
|
||
You may distribute sources of derivative works of the work | ||
provided that (1) (a) all source files of the original work that | ||
have been modified, (b) all source files of the derivative work | ||
that contain any party of the original work, and (c) all source | ||
files of the derivative work that are necessary to compile, link | ||
and run the derivative work without unresolved external calls and | ||
with the same functionality of the original work ("Necessary | ||
Sources") carry a prominent notice explaining the nature and date | ||
of the modification and/or creation. You are encouraged to make | ||
the Necessary Sources available under this license in order to | ||
further the development and acceptance of the work. | ||
|
||
EXCEPT AS OTHERWISE RESTRICTED BY LAW, THIS WORK IS PROVIDED | ||
WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OF ANY KIND, INCLUDING | ||
BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF FITNESS FOR A | ||
PARTICULAR PURPOSE, MERCHANTABILITY OR TITLE. EXCEPT AS | ||
OTHERWISE PROVIDED BY LAW, NO AUTHOR, COPYRIGHT HOLDER OR | ||
LICENSOR SHALL BE LIABLE TO YOU FOR DAMAGES OF ANY KIND, EVEN IF | ||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,34 @@ | ||
Copyright Robert J. Amstadt, 1993. All code is provided without | ||
warranty. All code is covered by the license contained in the file | ||
LICENSE unless explicitly stated in the individual source file. | ||
|
||
|
||
0. LICENSE | ||
|
||
You may without charge, royalty or other payment, copy and | ||
distribute copies of this work and derivative works of this work | ||
in source or binary form provided that: (1) | ||
you appropriately publish on each copy an appropriate copyright | ||
notice; (2) faithfully reproduce all prior copyright notices | ||
included in the original work (you may also add your own | ||
copyright notice); and (3) agree to indemnify and hold all prior | ||
authors, copyright holders and licensors of the work harmless | ||
from and against all damages arising from use of the work. | ||
|
||
You may distribute sources of derivative works of the work | ||
provided that (1) (a) all source files of the original work that | ||
have been modified, (b) all source files of the derivative work | ||
that contain any party of the original work, and (c) all source | ||
files of the derivative work that are necessary to compile, link | ||
and run the derivative work without unresolved external calls and | ||
with the same functionality of the original work ("Necessary | ||
Sources") carry a prominent notice explaining the nature and date | ||
of the modification and/or creation. You are encouraged to make | ||
the Necessary Sources available under this license in order to | ||
further the development and acceptance of the work. | ||
|
||
EXCEPT AS OTHERWISE RESTRICTED BY LAW, THIS WORK IS PROVIDED | ||
WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES OF ANY KIND, INCLUDING | ||
BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF FITNESS FOR A | ||
PARTICULAR PURPOSE, MERCHANTABILITY OR TITLE. EXCEPT AS | ||
OTHERWISE PROVIDED BY LAW, NO AUTHOR, COPYRIGHT HOLDER OR | ||
LICENSOR SHALL BE LIABLE TO YOU FOR DAMAGES OF ANY KIND, EVEN IF | ||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. | ||
|
||
1. COMPILATION: | ||
|
||
|
@@ -171,6 +197,11 @@ [email protected] | |
|
||
7. WHAT'S NEW | ||
|
||
WHAT'S NEW with Wine-940524: (see ChangeLog for details) | ||
- New menu functions | ||
- EnumObjects() | ||
- and many many bug fixes! | ||
|
||
WHAT'S NEW with Wine-940518: (see ChangeLog for details) | ||
- debugger improvements | ||
- bug fixes to get some dialog boxes working. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ SRCS = \ | |
menu.c \ | ||
scroll.c \ | ||
static.c \ | ||
edit.o \ | ||
edit.c \ | ||
desktop.c \ | ||
widgets.c | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.