wine
25 years agoBugfix: always clear QS_... from *both* changeBits and waitBits.
Ulrich Weigand [Fri, 18 Dec 1998 16:53:20 +0000 (16:53 +0000)] 
Bugfix: always clear QS_... from *both* changeBits and waitBits.
Bugfix: queue->hSendingTask is *queue* handle, not task handle.

25 years agoFirst step to make it possible to call COM interfaces from C++ code in
François Gouget [Fri, 18 Dec 1998 16:00:03 +0000 (16:00 +0000)] 
First step to make it possible to call COM interfaces from C++ code in
Winelib.

25 years agoPreliminary tooltip support.
Alex Priem [Fri, 18 Dec 1998 15:56:48 +0000 (15:56 +0000)] 
Preliminary tooltip support.
WM_SETFONT/GETFONT added.
Some bug fixes.
Use COMCTL32 heap instead of system heap.

25 years agoImplemented PolylineTo.
Huw D M Davies [Fri, 18 Dec 1998 15:55:15 +0000 (15:55 +0000)] 
Implemented PolylineTo.

25 years agoThe Zw... Functions in ntdll.dll are just alternate entry
Adrian Harvey [Fri, 18 Dec 1998 15:52:59 +0000 (15:52 +0000)] 
The Zw... Functions in ntdll.dll are just alternate entry
points for the same functions as the Nt... function of the
same names.  Changed ntdll.spec to match this.

25 years agoReorganized PE module loading to prepare for elf-dll loader.
Ulrich Weigand [Fri, 18 Dec 1998 15:38:15 +0000 (15:38 +0000)] 
Reorganized PE module loading to prepare for elf-dll loader.
WINE_MODREF creation moved to one central location.
Bugfix: correctly select native/built-in version if .DLL
extension is missing in LoadLibrary call.

25 years agoChanged error values MCI_INTERNAL to their correct values.
Eric Pouech [Fri, 18 Dec 1998 15:13:57 +0000 (15:13 +0000)] 
Changed error values MCI_INTERNAL to their correct values.

25 years agoRemoved warning.
Eric Pouech [Fri, 18 Dec 1998 15:08:39 +0000 (15:08 +0000)] 
Removed warning.

25 years agoNo longer sending directly messages to DriverProc but rather go through
Eric Pouech [Fri, 18 Dec 1998 15:07:18 +0000 (15:07 +0000)] 
No longer sending directly messages to DriverProc but rather go through
MCI layer (required for open/close).

25 years agoRemoved incorrect patch for MCI_OPEN anc MCI_CLOSE parameters (thanks to Robert Riggs
Eric Pouech [Fri, 18 Dec 1998 15:05:25 +0000 (15:05 +0000)] 
Removed incorrect patch for MCI_OPEN anc MCI_CLOSE parameters (thanks to Robert Riggs
for pointing out the bug, see the fix in mcistring.c)
Fixed MCI seeking on CD audio.

25 years agoSmall fixes.
Juergen Schmied [Fri, 18 Dec 1998 14:52:08 +0000 (14:52 +0000)] 
Small fixes.

25 years agoStub Control_FillCache_RunDLL.
Juergen Schmied [Fri, 18 Dec 1998 14:48:20 +0000 (14:48 +0000)] 
Stub Control_FillCache_RunDLL.

25 years agoSHGetFileInfo32A: get SHGFI_SYSICONINDEX implemented.
Juergen Schmied [Fri, 18 Dec 1998 14:45:07 +0000 (14:45 +0000)] 
SHGetFileInfo32A: get SHGFI_SYSICONINDEX implemented.

25 years agoILAppend seems to work now.
Juergen Schmied [Fri, 18 Dec 1998 14:41:56 +0000 (14:41 +0000)] 
ILAppend seems to work now.

25 years agoStubs for WaitNamedPipe[A|W].
Juergen Schmied [Fri, 18 Dec 1998 13:46:39 +0000 (13:46 +0000)] 
Stubs for WaitNamedPipe[A|W].

25 years agoFix GetTempPath32 if count=0.
Huw D M Davies [Tue, 15 Dec 1998 18:04:58 +0000 (18:04 +0000)] 
Fix GetTempPath32 if count=0.

25 years ago- add -lossaudio if needed, and a check for <soundcard.h>, to configure.in
Todd Vierling [Tue, 15 Dec 1998 17:49:02 +0000 (17:49 +0000)] 
- add -lossaudio if needed, and a check for <soundcard.h>, to configure.in
  (run autoconf after this).  Note that the check has been altered to break
  out of the AC_CHECK_HEADERS after the first match - this is so
  <sys/soundcard.h>, if found on NetBSD (a `real' OSS), will not conflict
  with the emulated ossaudio.
- check for <soundcard.h> along with the other two in a mutually-exclusive
  manner in the various *.c files that need it; change include of
  "mmsystem.h" to "multimedia.h" so this logic is all in one place
- change mcicda.c to allow for CD audio manipulation on NetBSD.  This
  includes:
  * changing ioctl() calls to be NON-SPLIT with exactly 3 args; on NetBSD
    ossaudio, ioctl() is #defined to be _oss_ioctl by <soundcard.h>, and
    neither splitting with #-directives nor a two-arg ioctl work;
  * changing the #if logic to allow both FreeBSD and NetBSD to share the
    appropriate code blocks
- block out MIDI code for NetBSD (init.c) and/or missing SNDCTL_MIDI_INFO
  (midi.c, mcimidi.c).  NetBSD's OSS emulation does not (yet) support MIDI.
Thanks go to mycroft@netbsd.org for the 99% bulk of this work.

25 years agoSet the class hints for managed windows.
Dirk Thierbach [Tue, 15 Dec 1998 17:33:04 +0000 (17:33 +0000)] 
Set the class hints for managed windows.

25 years agoBugfix: GetFullPathName sets lpFilePart only when the last element
Juergen Schmied [Tue, 15 Dec 1998 17:28:26 +0000 (17:28 +0000)] 
Bugfix: GetFullPathName sets lpFilePart only when the last element
does not end with '\'.

25 years agoLots of new defines and stubs.
Paul Quinn [Tue, 15 Dec 1998 15:38:36 +0000 (15:38 +0000)] 
Lots of new defines and stubs.

25 years agoThese patches add support for --enable-dll on NetBSD, and may even do so for
Todd Vierling [Tue, 15 Dec 1998 15:26:27 +0000 (15:26 +0000)] 
These patches add support for --enable-dll on NetBSD, and may even do so for
FreeBSD a.out.  Now, NetBSD can use libwine as a shared object.  Thanks to
mycroft@netbsd.org for doing this work!

25 years agoGlobal constructors using `.section .ctors' are bogus for NetBSD's
Todd Vierling [Tue, 15 Dec 1998 15:20:47 +0000 (15:20 +0000)] 
Global constructors using `.section .ctors' are bogus for NetBSD's
assembler. Use the appropriate `.stabs' when on NetBSD.

25 years agoUndefined CHAR_MAX and CHAR_MIN (#defined by NetBSD's system headers).
Todd Vierling [Tue, 15 Dec 1998 15:15:16 +0000 (15:15 +0000)] 
Undefined CHAR_MAX and CHAR_MIN (#defined by NetBSD's system headers).
Fixed some constants that are too big for a plain `int'.

25 years agoCheck for MAXFLOAT if FLT_MAX isn't there.
Marcus Meissner [Tue, 15 Dec 1998 13:01:21 +0000 (13:01 +0000)] 
Check for MAXFLOAT if FLT_MAX isn't there.

25 years agographics/psdrv forgets to pull in @DLLFLAGS@, and so is compiled non-PIC if
Todd Vierling [Tue, 15 Dec 1998 12:58:18 +0000 (12:58 +0000)] 
graphics/psdrv forgets to pull in @DLLFLAGS@, and so is compiled non-PIC if
using --enable-dll.

25 years agoMove declarations from windows.h to wingdi.h and winuser.h.
Veksler Michael [Tue, 15 Dec 1998 11:15:35 +0000 (11:15 +0000)] 
Move declarations from windows.h to wingdi.h and winuser.h.

25 years agoMade async IO (SIGIO) stuff from WINSOCK generic useable.
Marcus Meissner [Mon, 14 Dec 1998 18:15:10 +0000 (18:15 +0000)] 
Made async IO (SIGIO) stuff from WINSOCK generic useable.
Added async IO support to FILE and CONSOLE objects.

25 years agoPrevent segfault in setsockopt when optname is SO_LINGER and optval is
Stephen Langasek [Mon, 14 Dec 1998 18:11:24 +0000 (18:11 +0000)] 
Prevent segfault in setsockopt when optname is SO_LINGER and optval is
null.

25 years agoSome cleanup.
Juergen Schmied [Mon, 14 Dec 1998 17:40:25 +0000 (17:40 +0000)] 
Some cleanup.

25 years agoSHMapPIDLToSystemImageListIndex try's to determine and load the exact
Juergen Schmied [Mon, 14 Dec 1998 17:37:38 +0000 (17:37 +0000)] 
SHMapPIDLToSystemImageListIndex try's to determine and load the exact
icon for files (by type) now.

25 years agoNew HCR_GetDefaultIcon (internal).
Juergen Schmied [Mon, 14 Dec 1998 17:33:00 +0000 (17:33 +0000)] 
New HCR_GetDefaultIcon (internal).

25 years agoMoved DPMI wrapper allocation code to dosmem.c to REALLY make the
Ove Kaaven [Mon, 14 Dec 1998 17:26:04 +0000 (17:26 +0000)] 
Moved DPMI wrapper allocation code to dosmem.c to REALLY make the
RMcall shortcuts independent of dosmod. SS had been left out of
the REALMODECALL copy routines for some reason, fixed now. Also
cleaned up a few compiler warnings.

25 years agoAdded ability to specify X fonts used for Helv and Tms Rmn typefaces
Ian Pilcher [Mon, 14 Dec 1998 16:39:29 +0000 (16:39 +0000)] 
Added ability to specify X fonts used for Helv and Tms Rmn typefaces
with DefaultSerif and DefaultSansSerif INI keys.

25 years ago- Added a global label for elf-dll linking and a long with the resource
Bertho Stultiens [Mon, 14 Dec 1998 16:04:49 +0000 (16:04 +0000)] 
- Added a global label for elf-dll linking and a long with the resource
  size and a long with the directory size.
- Killed an annoying warning since version 1.0.0 in parser.y about a
  var being used before init.

25 years agoAdds the IPersistFile Interface to IShellLink[W] and gave both own
Juergen Schmied [Mon, 14 Dec 1998 14:51:27 +0000 (14:51 +0000)] 
Adds the IPersistFile Interface to IShellLink[W] and gave both own
IClassFactorys.

25 years ago(ReadConsole32A): small and stupid bug fixed
Marcus Meissner [Mon, 14 Dec 1998 14:48:09 +0000 (14:48 +0000)] 
(ReadConsole32A): small and stupid bug fixed
(WriteConsoleOutput): bug fixed (attributes may change within lines)
and enhanced speedwise by using buffering.
(CONSOLE_string_2_IR): enhanced, now gets scancodes and virtualkeycodes

25 years ago_ultoa implemented.
Marcus Meissner [Mon, 14 Dec 1998 14:45:21 +0000 (14:45 +0000)] 
_ultoa implemented.

25 years agoSmall hack to get rid of annoying err:resource: message for
Marcus Meissner [Mon, 14 Dec 1998 14:42:22 +0000 (14:42 +0000)] 
Small hack to get rid of annoying err:resource: message for
MessageBoxes.

25 years agoFix off-by-1 error in DirectSound ordinals. Thanks to Robert Riggs for
Ian Schmidt [Mon, 14 Dec 1998 14:41:25 +0000 (14:41 +0000)] 
Fix off-by-1 error in DirectSound ordinals. Thanks to Robert Riggs for
the pointer.

25 years agoSave the original video mode before going fullscreen and restore it
Stephen Crowley [Mon, 14 Dec 1998 14:39:56 +0000 (14:39 +0000)] 
Save the original video mode before going fullscreen and restore it
when the last DirectDraw_Release is called. Also fix a problem where
the viewport wasn't set to 0,0.

25 years agoMade more cross-platform by changing ->_fileno to fileno().
Joseph Pranevich [Mon, 14 Dec 1998 14:38:10 +0000 (14:38 +0000)] 
Made more cross-platform by changing ->_fileno to fileno().

25 years agoFix the Z-order of maximized/minimized child windows.
NF Stevens [Mon, 14 Dec 1998 14:37:06 +0000 (14:37 +0000)] 
Fix the Z-order of maximized/minimized child windows.

25 years agoXLFDs should be well-formed (14 hyphens) to match scalable fonts.
Huw D M Davies [Mon, 14 Dec 1998 12:58:10 +0000 (12:58 +0000)] 
XLFDs should be well-formed (14 hyphens) to match scalable fonts.
Stop slant field becoming wildcarded too early.

25 years ago(FOCUS_SwitchFocus) check for pFocusTo == NULL instead of hFocusTo==0.
Marcus Meissner [Mon, 14 Dec 1998 12:52:37 +0000 (12:52 +0000)] 
(FOCUS_SwitchFocus) check for pFocusTo == NULL instead of hFocusTo==0.

25 years agoHack OLE_GetFormat* to return something if datelen = 0.
Huw D M Davies [Mon, 14 Dec 1998 12:50:03 +0000 (12:50 +0000)] 
Hack OLE_GetFormat* to return something if datelen = 0.
Remove unnecessary WINAPI's.

25 years agoRelease 981211. wine-981211
Alexandre Julliard [Fri, 11 Dec 1998 17:15:02 +0000 (17:15 +0000)] 
Release 981211.

25 years agoImplemented CreateToolhelp32Snapshot, including two of the routines
Patrick Spinler [Fri, 11 Dec 1998 15:04:11 +0000 (15:04 +0000)] 
Implemented CreateToolhelp32Snapshot, including two of the routines
using snapshots, Process32First and Process32Next.

25 years agoMost of the currency variant conversion functions implemented.
Justin Bradford [Fri, 11 Dec 1998 14:02:16 +0000 (14:02 +0000)] 
Most of the currency variant conversion functions implemented.
Minor bugfixes and header tidying.

25 years agoAdded Makefile.
Alexandre Julliard [Fri, 11 Dec 1998 13:57:03 +0000 (13:57 +0000)] 
Added Makefile.

25 years agoAdded RasEnumConnections stub.
Marcus Meissner [Fri, 11 Dec 1998 13:26:26 +0000 (13:26 +0000)] 
Added RasEnumConnections stub.

25 years agoBugfix in PathCombine32[A|W].
Juergen Schmied [Fri, 11 Dec 1998 11:06:50 +0000 (11:06 +0000)] 
Bugfix in PathCombine32[A|W].
View menu in explorer and on right mouse button is working now.

25 years agoImplemented ILGetDisplayName.
Juergen Schmied [Fri, 11 Dec 1998 11:05:24 +0000 (11:05 +0000)] 
Implemented  ILGetDisplayName.

25 years agoStarted implementation of ShellExecuteEx32A.
Juergen Schmied [Fri, 11 Dec 1998 10:58:48 +0000 (10:58 +0000)] 
Started implementation of ShellExecuteEx32A.
Small changes.

25 years agoMoved menu resources to rc-file.
Juergen Schmied [Fri, 11 Dec 1998 10:55:34 +0000 (10:55 +0000)] 
Moved menu resources to rc-file.

25 years agoTwo debug messages clarified, one useless prototype removed.
Marcus Meissner [Fri, 11 Dec 1998 10:50:44 +0000 (10:50 +0000)] 
Two debug messages clarified, one useless prototype removed.

25 years ago294 missing WINAPI added.
Marcus Meissner [Fri, 11 Dec 1998 10:40:43 +0000 (10:40 +0000)] 
294 missing WINAPI added.

25 years agoKill swapped out (wine) processes too and truncate diff after some xxx
Marcus Meissner [Fri, 11 Dec 1998 10:21:46 +0000 (10:21 +0000)] 
Kill swapped out (wine) processes too and truncate diff after some xxx
lines.

25 years agoFixed SetLastError with wrong value.
Juergen Schmied [Fri, 11 Dec 1998 10:19:51 +0000 (10:19 +0000)] 
Fixed SetLastError with wrong value.

25 years agoImplement AbortDoc16, move AbortDoc32 and StartDoc32W to
Huw D M Davies [Fri, 11 Dec 1998 10:17:31 +0000 (10:17 +0000)] 
Implement AbortDoc16, move AbortDoc32 and StartDoc32W to
misc/printdrv.c and fix a few compile warnings.

25 years agoFixed a bunch of compiler warnings.
Andreas Mohr [Fri, 11 Dec 1998 09:16:48 +0000 (09:16 +0000)] 
Fixed a bunch of compiler warnings.

25 years agoAdded Win32 synchro to FILEs (useful only for terminal handles).
Marcus Meissner [Fri, 11 Dec 1998 09:13:29 +0000 (09:13 +0000)] 
Added Win32 synchro to FILEs (useful only for terminal handles).

25 years agoRemoved extra output.
Alexandre Julliard [Thu, 10 Dec 1998 16:04:51 +0000 (16:04 +0000)] 
Removed extra output.

25 years agoAuthors: Francis Beaudet <francis@macadamian.com>, Sylvain St-Germain <sylvain@macada...
Alexandre Julliard [Thu, 10 Dec 1998 15:49:22 +0000 (15:49 +0000)] 
Authors: Francis Beaudet <francis@macadamian.com>, Sylvain St-Germain <sylvain@macadamian.com>, Thuy Nguyen <thuy@macadamian.com>
Lots of new stubs.

25 years agoAdded a few authors.
Alexandre Julliard [Thu, 10 Dec 1998 11:06:59 +0000 (11:06 +0000)] 
Added a few authors.

25 years agoLet the System_Time_Selector clock tick.
Ulrich Weigand [Thu, 10 Dec 1998 11:01:09 +0000 (11:01 +0000)] 
Let the System_Time_Selector clock tick.

25 years agoAdapted to CreateSystemTimer interface change.
Ulrich Weigand [Thu, 10 Dec 1998 10:47:26 +0000 (10:47 +0000)] 
Adapted to CreateSystemTimer interface change.

25 years agoCleaned up CreateSystemTimer interface for use with 32-bit callbacks.
Ulrich Weigand [Thu, 10 Dec 1998 10:44:38 +0000 (10:44 +0000)] 
Cleaned up CreateSystemTimer interface for use with 32-bit callbacks.
(NOTE: 16-bit callbacks still don't work!)

25 years ago- Handle WM_MDIRESTORE by calling WM_SYSCOMMAND for
NF Stevens [Thu, 10 Dec 1998 10:41:23 +0000 (10:41 +0000)] 
- Handle WM_MDIRESTORE by calling WM_SYSCOMMAND for
the child window so that the system menu is set correctly.
- In MDICascade and MDITile use WM_MDIRESTORE message
to restore maximized window so that system menu is
handled correctly.

25 years agoAdded implementation of the VARIANT APIs.
Jean-Claude Cote [Thu, 10 Dec 1998 10:00:38 +0000 (10:00 +0000)] 
Added implementation of the VARIANT APIs.

25 years agoFixed DRIVE_GetFreeSpace to handle space > 4 GByte.
Uwe Bonnes [Thu, 10 Dec 1998 09:56:06 +0000 (09:56 +0000)] 
Fixed DRIVE_GetFreeSpace to handle space > 4 GByte.

25 years ago* handle TVIF_TEXT by TREEVIEW_SetItem according to MS documentation.
Alex Priem [Thu, 10 Dec 1998 09:54:17 +0000 (09:54 +0000)] 
* handle TVIF_TEXT by TREEVIEW_SetItem according to MS documentation.
* better handling of LPSTR_TEXTCALLBACK32A
* TREEVIEW_GetNext|PrevListItem didn't descend into visible child items.

25 years agoWarn if two .exes conflict with each other and the second does not
Marcus Meissner [Thu, 10 Dec 1998 09:53:41 +0000 (09:53 +0000)] 
Warn if two .exes conflict with each other and the second does not
have relocation records.

25 years agoFixed GetFileTitle32A not filling up lpTitle if lpFile didn't
Uwe Bonnes [Thu, 10 Dec 1998 09:52:23 +0000 (09:52 +0000)] 
Fixed GetFileTitle32A not filling up lpTitle if lpFile didn't
contain '/','\\' or ':'.

25 years agoFixed a potential crash if a usable video mode is not detected.
Stephen Crowley [Thu, 10 Dec 1998 09:50:35 +0000 (09:50 +0000)] 
Fixed a potential crash if a usable video mode is not detected.

25 years agoScript to generate authors files
Alexandre Julliard [Thu, 10 Dec 1998 09:35:50 +0000 (09:35 +0000)] 
Script to generate authors files

25 years agoStubs for IDirectInputEffect and IDirectInputDevice2A methods,
Robert Riggs [Thu, 10 Dec 1998 09:08:48 +0000 (09:08 +0000)] 
Stubs for IDirectInputEffect and IDirectInputDevice2A methods,
as well as AddRef(), GetCapabilites(), EnumObjects(),
GetProperty(), GetObjectInfo(), GetDeviceInfo(), Initialize(),
and RunControlPanel() for IDirectInputDevice.

25 years agoSet window focus in _common_IDirectDraw_SetDisplayMode().
Robert Riggs [Thu, 10 Dec 1998 09:05:09 +0000 (09:05 +0000)] 
Set window focus in  _common_IDirectDraw_SetDisplayMode().

25 years agoAccept MCI_OPEN and MCI_CLOSE messages in MCICDAUDIO_DriverProc32().
Robert Riggs [Thu, 10 Dec 1998 09:03:00 +0000 (09:03 +0000)] 
Accept MCI_OPEN and MCI_CLOSE messages in MCICDAUDIO_DriverProc32().

25 years agoRemoved deferred Expose events handling.
Ulrich Weigand [Thu, 10 Dec 1998 08:59:53 +0000 (08:59 +0000)] 
Removed deferred Expose events handling.

25 years agoDon't clip VisRgn against X desktop.
Ulrich Weigand [Thu, 10 Dec 1998 08:57:31 +0000 (08:57 +0000)] 
Don't clip VisRgn against X desktop.

25 years agoLoadModule32/WinExec32 should return 16-bit hInstance/hTask.
Ulrich Weigand [Thu, 10 Dec 1998 08:30:30 +0000 (08:30 +0000)] 
LoadModule32/WinExec32 should return 16-bit hInstance/hTask.

25 years agoSanity check on font size.
Huw D M Davies [Thu, 10 Dec 1998 08:26:23 +0000 (08:26 +0000)] 
Sanity check on font size.

25 years agoMissing parentheses added.
Marcus Meissner [Thu, 10 Dec 1998 08:21:14 +0000 (08:21 +0000)] 
Missing parentheses added.

25 years agoEnhanced Win32 Console (XTERM)
Marcus Meissner [Wed, 9 Dec 1998 16:37:04 +0000 (16:37 +0000)] 
Enhanced Win32 Console (XTERM)
- inputhandling enhanced (keys and mouseclicks)
- win32 synchronization (partial)
- lots of enhancements to drawing functions
- simple/complex console (simple-stdin/stdout -> complex-xterm).

25 years agoAdd a driver to open up a new xterm window whenever console output is
Joseph Pranevich [Wed, 9 Dec 1998 15:43:03 +0000 (15:43 +0000)] 
Add a driver to open up a new xterm window whenever console output is
needed. Derived from console/win32.c but we are not yet ready to merge
the code completely.

25 years agoImproved the handling of font encodings.
Pablo Saratxaga [Wed, 9 Dec 1998 14:51:48 +0000 (14:51 +0000)] 
Improved the handling of font encodings.

25 years agoImplemented DPMI RMCBs using the DOS subsystem, and a few other
Ove Kaaven [Wed, 9 Dec 1998 13:14:19 +0000 (13:14 +0000)] 
Implemented DPMI RMCBs using the DOS subsystem, and a few other
improvements. Also, some special-cased shortcut paths will allow some
common real-mode call/RMCB combinations to work even without calling the
DOS subsystem, thus letting APIs like DOSASPI work without any dirty hacks
even on platforms that cannot use dosmod.

25 years agoSome unnecessary #include and messages removed.
Marcus Meissner [Wed, 9 Dec 1998 11:06:00 +0000 (11:06 +0000)] 
Some unnecessary #include and messages removed.

25 years agoSome small corrections to EnumSystemLocales32AW
Uwe Bonnes [Wed, 9 Dec 1998 11:02:16 +0000 (11:02 +0000)] 
Some small corrections to EnumSystemLocales32AW

25 years agoTried another kludge for the Xmd.h problem.
Alexandre Julliard [Tue, 8 Dec 1998 15:06:38 +0000 (15:06 +0000)] 
Tried another kludge for the Xmd.h problem.

25 years agoAdded fullscreen DGA support.
Stephen Crowley [Tue, 8 Dec 1998 13:10:56 +0000 (13:10 +0000)] 
Added fullscreen DGA support.

25 years agoFixed dummy entries in MAIN_ParseLanguageOption().
Pablo Saratxaga [Tue, 8 Dec 1998 10:40:19 +0000 (10:40 +0000)] 
Fixed dummy entries in MAIN_ParseLanguageOption().

25 years agoProperly implement MCI_CDA_STATUS_TYPE_TRACK.
Brian Gerst [Tue, 8 Dec 1998 10:34:58 +0000 (10:34 +0000)] 
Properly implement MCI_CDA_STATUS_TYPE_TRACK.
Fix an off-by-one bug with MCI_STATUS_LENGTH.

25 years agoSuperflous WINAPI removed.
Marcus Meissner [Tue, 8 Dec 1998 10:14:00 +0000 (10:14 +0000)] 
Superflous WINAPI removed.

25 years agoWarn about invalid entrypoints (created by viruses) which result in
Marcus Meissner [Tue, 8 Dec 1998 10:06:59 +0000 (10:06 +0000)] 
Warn about invalid entrypoints (created by viruses) which result in
Wine crashes.

25 years agoCreate X11 palette on DirectDrawSurface::SetPalette, not before (we
Marcus Meissner [Tue, 8 Dec 1998 10:00:38 +0000 (10:00 +0000)] 
Create X11 palette on DirectDrawSurface::SetPalette, not before (we
might not have an X11 window yet).

25 years agoMove TWEAK_Init from USER to GDIInit.
Marcus Meissner [Tue, 8 Dec 1998 09:49:45 +0000 (09:49 +0000)] 
Move TWEAK_Init from USER to GDIInit.

25 years agoFix for SetAbortProc16, stub for SetAbortProc32 and tidy up some other
Huw D M Davies [Tue, 8 Dec 1998 09:44:30 +0000 (09:44 +0000)] 
Fix for SetAbortProc16, stub for SetAbortProc32 and tidy up some other
printing functions.

25 years agoFix includes.
Huw D M Davies [Tue, 8 Dec 1998 09:39:07 +0000 (09:39 +0000)] 
Fix includes.

25 years agoFix X11DRV_ExtTextOut for rotated text if either of lpDx, breakExtra
Huw D M Davies [Tue, 8 Dec 1998 09:37:49 +0000 (09:37 +0000)] 
Fix X11DRV_ExtTextOut for rotated text if either of lpDx, breakExtra
or charExtra are non-zero.