| [3797] | 1 | /* $Id: changelog,v 1.1024 2000-07-04 08:39:35 sandervl Exp $ */
|
|---|
| [2659] | 2 |
|
|---|
| [3797] | 3 | 2000-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 4 | - KERNEL32: Unstubbed CopyFileExA/W (calls CopyFileA/W; not properly implemented)
|
|---|
| 5 | Unstubbed CreateDirectoryExA/W (calls CreateDirectoryA/W; not properly implemented)
|
|---|
| 6 | Fixed GetShortPathNameA/W; don't touch short path parameter if
|
|---|
| 7 | it's NULL; behaviour (as seen in NT 4, SP6):
|
|---|
| 8 | - converts long filename to 8.3 short filname (TODO: not yet done here!)
|
|---|
| 9 | - fails on volume that doesn't support 8.3 filenames
|
|---|
| 10 | - if lpszShortPath 0 or cchBuffer too small -> return required length
|
|---|
| 11 | (INCLUDING 0 terminator)
|
|---|
| 12 | - if lpszLongPath == NULL -> ERROR_INVALID_PARAMETER (return 0)
|
|---|
| 13 | - if lpszLongPath empty -> proceed as if nothing is wrong
|
|---|
| 14 | (Wine claims it sets last error to ERROR_BAD_PATHNAME)
|
|---|
| 15 | - does NOT clear the last error if successful!
|
|---|
| 16 | - if successful -> return length of string (excluding 0 terminator)
|
|---|
| 17 | - USER32: Fixed adding windows to tasklist (done too late)
|
|---|
| 18 | - GDI32/USER32:
|
|---|
| 19 | - Rewrote Set/GetViewportExtEx, Set/GetMapMode & moved them
|
|---|
| 20 | from gdi32 to user32
|
|---|
| 21 |
|
|---|
| [3795] | 22 | 2000-07-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 23 | - KERNEL32: Added IsDebuggerPresent (debug.cpp). Returns FALSE, but by
|
|---|
| 24 | SETing ODIN32.DEBUGGERPRESENT=1 it will return TRUE. (Some
|
|---|
| 25 | application might issue calls to OutputDebugString if they
|
|---|
| 26 | think they're being debugged.)
|
|---|
| 27 | Moved OutputDebugString(A/W) to debug.cpp.
|
|---|
| 28 |
|
|---|
| [3788] | 29 | 2000-07-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 30 | - RICHED32: Fixed bug when creating edit window (needs to be WS_CHILD)
|
|---|
| [3790] | 31 | - USER32: Fixed moving of child windows in MsgFormatFrame & move
|
|---|
| 32 | child windows if only client rectangle changes
|
|---|
| 33 | (fixes Acrobat Distiller window)
|
|---|
| [3791] | 34 | - SHELL32: Put back check for registration of ShellView window class
|
|---|
| 35 | -> RegisterClass now fails if already registered
|
|---|
| [3795] | 36 | (fixed openfile dialogs)
|
|---|