wine
18 years ago- now storing frames information in thread structure
Eric Pouech [Fri, 18 Nov 2005 12:33:03 +0000 (12:33 +0000)] 
- now storing frames information in thread structure
- frames are cached after each thread stops execution
- reimplemented backtrace on top of this

18 years agoAdded a few more Unicode digits from Unicode version 4.1.
Alexandre Julliard [Fri, 18 Nov 2005 12:15:59 +0000 (12:15 +0000)] 
Added a few more Unicode digits from Unicode version 4.1.

18 years agoUpdated codepage tables to Unicode version 4.1.
Alexandre Julliard [Fri, 18 Nov 2005 12:15:04 +0000 (12:15 +0000)] 
Updated codepage tables to Unicode version 4.1.

18 years agoUpdate Korean translations.
YunSong Hwang [Fri, 18 Nov 2005 12:07:42 +0000 (12:07 +0000)] 
Update Korean translations.

18 years agoAdd another test for Z order of child windows.
Dmitry Timoshkov [Fri, 18 Nov 2005 12:07:19 +0000 (12:07 +0000)] 
Add another test for Z order of child windows.

18 years agoUse case insensitive comparison to check file extensions.
Dmitry Timoshkov [Fri, 18 Nov 2005 12:06:57 +0000 (12:06 +0000)] 
Use case insensitive comparison to check file extensions.

18 years agoFix wrong use of the PFD_GENERIC_ACCELERATED flag. It indicates that
Peter Beutner [Fri, 18 Nov 2005 12:06:45 +0000 (12:06 +0000)] 
Fix wrong use of the PFD_GENERIC_ACCELERATED flag. It indicates that
the selected pixel format lacks full hardware acceleration and only a
few parts are accelerated. So don't always set it but only if the X
server actually reports that the selected pixel format is not fully
accelerated.

18 years agoFree ConnectionPoint objects (fix memory leak).
Jacek Caban [Fri, 18 Nov 2005 12:06:12 +0000 (12:06 +0000)] 
Free ConnectionPoint objects (fix memory leak).

18 years agoEnsures, when we cannot demangle the string, to return the mangled
Eric Pouech [Fri, 18 Nov 2005 12:06:00 +0000 (12:06 +0000)] 
Ensures, when we cannot demangle the string, to return the mangled
name instead of a NULL pointer.

18 years agoNow returning correct symbol flags (as native does) for function pmts
Eric Pouech [Fri, 18 Nov 2005 12:05:44 +0000 (12:05 +0000)] 
Now returning correct symbol flags (as native does) for function pmts
& locals in dbghelp.
Modified winedbg accordingly.

18 years agoIf SANE returns empty device list treat it as an error.
Dmitry Timoshkov [Fri, 18 Nov 2005 12:05:05 +0000 (12:05 +0000)] 
If SANE returns empty device list treat it as an error.

18 years agoFix parsing '{' char.
Jacek Caban [Fri, 18 Nov 2005 12:04:53 +0000 (12:04 +0000)] 
Fix parsing '{' char.

18 years agoHandle failure on Windows 95 properly.
Robert Reif [Fri, 18 Nov 2005 12:04:36 +0000 (12:04 +0000)] 
Handle failure on Windows 95 properly.
Make two functions available to all files.
Make format_string() const correct.

18 years agoImplemented getaddrinfo(), including full mapping of struct addrinfo
Marcus Meissner [Thu, 17 Nov 2005 12:58:35 +0000 (12:58 +0000)] 
Implemented getaddrinfo(), including full mapping of struct addrinfo
between UNIX and Windows. Based on a patch by Mike Hearn.

18 years agoDbghelp describes the types of function arguments with a specific
Eric Pouech [Thu, 17 Nov 2005 12:53:41 +0000 (12:53 +0000)] 
Dbghelp describes the types of function arguments with a specific
symbol-type (symt) which links both to arguments' type and to function
prototype
- added this new type to dbghelp
- implemented its use in winedbg

18 years agoSymGetType(...,TI_GET_LENGTH,...) requires a 64 bit parameter, not a
Eric Pouech [Thu, 17 Nov 2005 11:51:53 +0000 (11:51 +0000)] 
SymGetType(...,TI_GET_LENGTH,...) requires a 64 bit parameter, not a
32 bit one.

18 years agoOnly update modified files.
Alexandre Julliard [Thu, 17 Nov 2005 11:43:10 +0000 (11:43 +0000)] 
Only update modified files.

18 years agoImprove IConnectionPoint handling.
Jacek Caban [Thu, 17 Nov 2005 11:40:55 +0000 (11:40 +0000)] 
Improve IConnectionPoint handling.

18 years agoDisable support for creation FMT_Unknown textures. This gets most of
Oliver Stieber [Thu, 17 Nov 2005 11:40:43 +0000 (11:40 +0000)] 
Disable support for creation FMT_Unknown textures. This gets most of
the d3d8 demos from www.codesampler.com working.

18 years agoRemove some incompatibilities in the wctype table by updating the
Robert Shearman [Thu, 17 Nov 2005 11:07:04 +0000 (11:07 +0000)] 
Remove some incompatibilities in the wctype table by updating the
space, blank and cntrl exceptions and fixing the type given to
characters in the "Zl" and "Zp" classes.

18 years agoReturn false if index is out of bounds in GetItemT.
Vitaliy Margolen [Thu, 17 Nov 2005 11:06:18 +0000 (11:06 +0000)] 
Return false if index is out of bounds in GetItemT.

18 years agoFixed invalid C syntax.
Alexandre Julliard [Thu, 17 Nov 2005 11:06:06 +0000 (11:06 +0000)] 
Fixed invalid C syntax.

18 years agoThe BOM doesn't need a DWORD sized variable, only a WCHAR one.
Robert Shearman [Thu, 17 Nov 2005 11:05:46 +0000 (11:05 +0000)] 
The BOM doesn't need a DWORD sized variable, only a WCHAR one.
Don't increment the szFile pointer since we removed the BOM earlier
and it will cause the first real character of the INI file to be
skipped.

18 years agoUse command line for initial directory selection.
Martin Fuchs [Thu, 17 Nov 2005 11:05:35 +0000 (11:05 +0000)] 
Use command line for initial directory selection.
Remove useless hwndParent variable.

18 years agoClear the z and stencil buffers at the end of the scene, this fixes a
Oliver Stieber [Thu, 17 Nov 2005 11:05:12 +0000 (11:05 +0000)] 
Clear the z and stencil buffers at the end of the scene, this fixes a
problem with the solid node bsp demo from www.codesampler.com as well
as a lot of blank screens in some other demos.

18 years agoProvide a sample of the joy of MSC symbol mangling.
Eric Pouech [Thu, 17 Nov 2005 11:05:00 +0000 (11:05 +0000)] 
Provide a sample of the joy of MSC symbol mangling.

18 years agoWhen a symbol name already contains a module name, we shouldn't search
Eric Pouech [Thu, 17 Nov 2005 11:04:39 +0000 (11:04 +0000)] 
When a symbol name already contains a module name, we shouldn't search
in other modules.

18 years agoSimplification of lex's input reading.
Eric Pouech [Thu, 17 Nov 2005 11:04:27 +0000 (11:04 +0000)] 
Simplification of lex's input reading.

18 years agoMade test loadable on win95 again (EnumDisplayDevicesA not present).
Detlef Riekenberg [Thu, 17 Nov 2005 11:04:01 +0000 (11:04 +0000)] 
Made test loadable on win95 again (EnumDisplayDevicesA not present).

18 years agoAdded stub implementation of IDocHostUIHandler.
Jacek Caban [Thu, 17 Nov 2005 11:03:53 +0000 (11:03 +0000)] 
Added stub implementation of IDocHostUIHandler.

18 years agoAdded IHTMLWindow forward declaration.
Jacek Caban [Thu, 17 Nov 2005 11:03:25 +0000 (11:03 +0000)] 
Added IHTMLWindow forward declaration.

18 years agoUpdate win32.api to cvs.
Vincent Béron [Thu, 17 Nov 2005 11:03:14 +0000 (11:03 +0000)] 
Update win32.api to cvs.

18 years agoFix _fcloseall() return value.
Saulius Krasuckas [Wed, 16 Nov 2005 11:47:51 +0000 (11:47 +0000)] 
Fix _fcloseall() return value.
Improve some trace messages.
Add tests for fopen(), fclose(), _fcloseall().
Stricten some checks of _unlink().

18 years agoAdded OLEIVERB_INPLACEACTIVATE implementation in IOleObject::DoVerb.
Jacek Caban [Wed, 16 Nov 2005 11:46:56 +0000 (11:46 +0000)] 
Added OLEIVERB_INPLACEACTIVATE implementation in IOleObject::DoVerb.

18 years agoBeginnings of an explorer.exe replacement that wraps the existing
Aric Stewart [Wed, 16 Nov 2005 11:45:51 +0000 (11:45 +0000)] 
Beginnings of an explorer.exe replacement that wraps the existing
winefile program.

18 years agoAdded ability to execute commands from a file passed on command line
Eric Pouech [Wed, 16 Nov 2005 11:23:07 +0000 (11:23 +0000)] 
Added ability to execute commands from a file passed on command line
(through --file option).
Use that feature to get rid of arg_command hack (--command option now
creates a temporary file).

18 years agoAdd a test for some edit control behaviours, make it pass under Wine.
Dmitry Timoshkov [Wed, 16 Nov 2005 11:22:54 +0000 (11:22 +0000)] 
Add a test for some edit control behaviours, make it pass under Wine.

18 years agoOnly convert bits per sample between different encoding formats.
Robert Reif [Wed, 16 Nov 2005 11:22:06 +0000 (11:22 +0000)] 
Only convert bits per sample between different encoding formats.

18 years agoAdded mapping between unix and windows sockaddr_in6(_old) and
Marcus Meissner [Wed, 16 Nov 2005 11:21:57 +0000 (11:21 +0000)] 
Added mapping between unix and windows sockaddr_in6(_old) and
sockaddr_in. Added address family, socket type mappers.

18 years ago- Improve callback to give context sensitive information about the
Robert Shearman [Wed, 16 Nov 2005 11:21:41 +0000 (11:21 +0000)] 
- Improve callback to give context sensitive information about the
  different statuses and print the thread ID that it was called from.
- Replace the busy waiting on the "goon" flag with an event.
- Replace hard coded numbers with more informative constants
  throughout the InternetReadFile test.
- Add tests for InternetReadFileExA.
- Fix the error value from calling InternetReadFile with a NULL handle
  as indicated by the test.

18 years agoAdded IOleInPlaceSite stub implementation.
Jacek Caban [Wed, 16 Nov 2005 11:21:00 +0000 (11:21 +0000)] 
Added IOleInPlaceSite stub implementation.

18 years agoAdd timezone information to the registry.
Mike McCormack [Tue, 15 Nov 2005 18:18:27 +0000 (18:18 +0000)] 
Add timezone information to the registry.

18 years agoWe shouldn't pass the struct hostent returned from gethostbyname as
Robert Shearman [Tue, 15 Nov 2005 18:16:55 +0000 (18:16 +0000)] 
We shouldn't pass the struct hostent returned from gethostbyname as
it's not thread-safe and isn't needed anyway.

18 years agoUpdated context definitions for the latest Darwin/x86.
Ken Thomases [Tue, 15 Nov 2005 18:15:56 +0000 (18:15 +0000)] 
Updated context definitions for the latest Darwin/x86.

18 years agoCorrect the size of a callback parameter.
Robert Shearman [Tue, 15 Nov 2005 18:12:42 +0000 (18:12 +0000)] 
Correct the size of a callback parameter.
Fix the declaration of INTERNET_WorkerThreadFunc.

18 years agoConvert MsiEnumComponentQualifiers to use msi_strcpy_to_awstring.
Mike McCormack [Tue, 15 Nov 2005 18:12:21 +0000 (18:12 +0000)] 
Convert MsiEnumComponentQualifiers to use msi_strcpy_to_awstring.

18 years agoFixed Unicode buffer size bug in CreateUrlCacheEntryW.
Alexandre Julliard [Tue, 15 Nov 2005 16:56:04 +0000 (16:56 +0000)] 
Fixed Unicode buffer size bug in CreateUrlCacheEntryW.

18 years agoFix function prototype and spec file entry for
Mike McCormack [Tue, 15 Nov 2005 16:55:04 +0000 (16:55 +0000)] 
Fix function prototype and spec file entry for
MsiEnumComponentQualifiers.

18 years agoImplement implement header callback support (HDN_GETDISPINFO notification):
Raphael Junqueira [Tue, 15 Nov 2005 16:54:41 +0000 (16:54 +0000)] 
Implement implement header callback support (HDN_GETDISPINFO notification):
- better factorisation
- unicode fixes

18 years agoDon't crash if BindToStorage fails.
Alexandre Julliard [Tue, 15 Nov 2005 16:54:13 +0000 (16:54 +0000)] 
Don't crash if BindToStorage fails.

18 years agoOnly return ERROR_MORE_DATA if there's a buffer to copy a result
Mike McCormack [Tue, 15 Nov 2005 16:53:47 +0000 (16:53 +0000)] 
Only return ERROR_MORE_DATA if there's a buffer to copy a result
into.

18 years agoDo not change focus if the being activated window is no longer
Dmitry Timoshkov [Tue, 15 Nov 2005 16:53:26 +0000 (16:53 +0000)] 
Do not change focus if the being activated window is no longer
active.

18 years agoMade test loadable on NT 3.51 again (GetDiskFreeSpaceExA not present).
Detlef Riekenberg [Tue, 15 Nov 2005 16:53:09 +0000 (16:53 +0000)] 
Made test loadable on NT 3.51 again (GetDiskFreeSpaceExA not present).

18 years agoSome extra tests for GetPrinterDriverDirectory.
Detlef Riekenberg [Tue, 15 Nov 2005 16:51:45 +0000 (16:51 +0000)] 
Some extra tests for GetPrinterDriverDirectory.
Display a TRACE when the Service "spooler" is not running (NT).

18 years agoDisable PARMRK input flag of serial ports.
Cihan Altinay [Tue, 15 Nov 2005 16:51:28 +0000 (16:51 +0000)] 
Disable PARMRK input flag of serial ports.

18 years agoUpdate Korean translations.
YunSong Hwang [Tue, 15 Nov 2005 12:06:12 +0000 (12:06 +0000)] 
Update Korean translations.

18 years agoUse proper asm name for external functions.
Alexandre Julliard [Tue, 15 Nov 2005 12:05:45 +0000 (12:05 +0000)] 
Use proper asm name for external functions.

18 years agoAdd a test for RtlAllocateAndInitializeSid, make it pass under Wine.
Dmitry Timoshkov [Tue, 15 Nov 2005 12:03:46 +0000 (12:03 +0000)] 
Add a test for RtlAllocateAndInitializeSid, make it pass under Wine.

18 years agoBeginning implementation of Navigate2.
Jacek Caban [Tue, 15 Nov 2005 12:03:25 +0000 (12:03 +0000)] 
Beginning implementation of Navigate2.

18 years ago- defined D3DCOLOR_B macros to access byte values of D3DCOLOR
Raphael Junqueira [Tue, 15 Nov 2005 12:03:13 +0000 (12:03 +0000)] 
- defined D3DCOLOR_B macros to access byte values of D3DCOLOR
- use D3DCOLOR macros instead of using shift + masks
- fix a bug where diffuse.lpData checked instead of specular.lpData
- implement color fixup on ARB VShader compilation code:
 -> on input parameters using swizzle
 -> add is_color parameter on vshader_program_add_param

18 years agoAdd stubs around ScriptStringAnalyse to avoid PAF crash.
Raphael Junqueira [Tue, 15 Nov 2005 12:02:16 +0000 (12:02 +0000)] 
Add stubs around ScriptStringAnalyse to avoid PAF crash.

18 years agoINTERNET_STATUS_HANDLE_CREATED notifications just send the handle, not
Robert Shearman [Tue, 15 Nov 2005 12:01:59 +0000 (12:01 +0000)] 
INTERNET_STATUS_HANDLE_CREATED notifications just send the handle, not
an INTERNET_ASYNC_RESULT structure.
The source handle in HTTP_Connect should be the parent's handle.

18 years agoSSL doesn't need to use a different socket to unsecure communications.
Robert Shearman [Tue, 15 Nov 2005 12:01:40 +0000 (12:01 +0000)] 
SSL doesn't need to use a different socket to unsecure communications.

18 years agoCorrected last error information.
Paul Vriens [Tue, 15 Nov 2005 12:00:41 +0000 (12:00 +0000)] 
Corrected last error information.
Make sure we can run the tests on win9x.

18 years agoSet the Installed property if the product is already installed.
Mike McCormack [Tue, 15 Nov 2005 12:00:13 +0000 (12:00 +0000)] 
Set the Installed property if the product is already installed.

18 years agoAdded support for the QS_ALLPOSTMESSAGE flag.
Alexandre Julliard [Mon, 14 Nov 2005 15:17:09 +0000 (15:17 +0000)] 
Added support for the QS_ALLPOSTMESSAGE flag.

18 years agoBeginning of true BindToStorage implementation.
Jacek Caban [Mon, 14 Nov 2005 15:12:43 +0000 (15:12 +0000)] 
Beginning of true BindToStorage implementation.

18 years agoPrefix [putref] property names with putref_.
Huw Davies [Mon, 14 Nov 2005 15:12:24 +0000 (15:12 +0000)] 
Prefix [putref] property names with putref_.

18 years agoFix SysparametersInfoA( SPI_SETICONMETRICS), the A<->W conversion was
Rein Klazes [Mon, 14 Nov 2005 15:12:14 +0000 (15:12 +0000)] 
Fix SysparametersInfoA( SPI_SETICONMETRICS), the A<->W conversion was
rather broken.
Make the SPI_{G|S}ETICONMETRICS functions more consistent with those
for SPI_ICON{HORIZONTAL|VERTICAL}SPACING, SPI_{G|S}ICONTITLEWRAP and
SPI_{G|S}ICONTITLELOGFONT.
Accordingly extend the corresponding tests.

18 years agoUndname: Allow more then one coded character in demangle_datatype.
Uwe Bonnes [Mon, 14 Nov 2005 15:11:39 +0000 (15:11 +0000)] 
Undname: Allow more then one coded character in demangle_datatype.

18 years agoAdd default version information.
Vitaliy Margolen [Mon, 14 Nov 2005 15:11:26 +0000 (15:11 +0000)] 
Add default version information.

18 years agoNtReadFile: now returning correct status in NtReadFile for EOF
Eric Pouech [Mon, 14 Nov 2005 15:11:11 +0000 (15:11 +0000)] 
NtReadFile: now returning correct status in NtReadFile for EOF
conditions (on files) and broken pipe (on named pipes).

18 years agoWhen creating DIBs with a color depth <= 8, always set biClrUsed field
Peter Beutner [Mon, 14 Nov 2005 15:10:23 +0000 (15:10 +0000)] 
When creating DIBs with a color depth <= 8, always set biClrUsed field
to the number of entries in the color table.

18 years agoEmpty strings are not equal to any number, so all comparisons against
Mike McCormack [Mon, 14 Nov 2005 12:29:10 +0000 (12:29 +0000)] 
Empty strings are not equal to any number, so all comparisons against
them fail except for tests for non-equalness.

18 years agoFix an intermittent lockup with ATI's driver, I expect the problem is
Oliver Stieber [Mon, 14 Nov 2005 12:28:59 +0000 (12:28 +0000)] 
Fix an intermittent lockup with ATI's driver, I expect the problem is
trying to clear the display before it's visible. Also correct the
clear alpha value.

18 years agoAdded get_protocol_iface internal function and use it in
Jacek Caban [Mon, 14 Nov 2005 12:28:18 +0000 (12:28 +0000)] 
Added get_protocol_iface internal function and use it in
get_protocol_info.

18 years agoUse the front buffer palette for DC operations on off-screen buffers.
Lionel Ulmer [Mon, 14 Nov 2005 12:27:55 +0000 (12:27 +0000)] 
Use the front buffer palette for DC operations on off-screen buffers.

18 years agoGet the version and language ID of ADVPACK.DLL too.
Saulius Krasuckas [Mon, 14 Nov 2005 12:27:39 +0000 (12:27 +0000)] 
Get the version and language ID of ADVPACK.DLL too.

18 years agoFix the default value for keylow in DIB_DirectDrawSurface_Blt.
H. Verbeet [Mon, 14 Nov 2005 12:27:31 +0000 (12:27 +0000)] 
Fix the default value for keylow in DIB_DirectDrawSurface_Blt.
Unset DDBLT_DDFX when lpbltfx is NULL / contains no dwDDFX.

18 years agoAdd Korean translations.
YunSong Hwang [Mon, 14 Nov 2005 11:27:36 +0000 (11:27 +0000)] 
Add Korean translations.

18 years agoAdd, reformat API documentation.
Markus Amsler [Mon, 14 Nov 2005 11:24:37 +0000 (11:24 +0000)] 
Add, reformat API documentation.

18 years agoFix comparison of empty properties to numbers and add test cases.
Mike McCormack [Mon, 14 Nov 2005 11:24:14 +0000 (11:24 +0000)] 
Fix comparison of empty properties to numbers and add test cases.

18 years agoFix message tests to run cleanly on Windows XP SP1.
Dmitry Timoshkov [Mon, 14 Nov 2005 11:24:06 +0000 (11:24 +0000)] 
Fix message tests to run cleanly on Windows XP SP1.

18 years agoUnicode compile fix.
Edgar Hucek [Mon, 14 Nov 2005 11:23:34 +0000 (11:23 +0000)] 
Unicode compile fix.

18 years agoFix set_test_val function declaration to ensure stack is left
Eric Pouech [Mon, 14 Nov 2005 11:23:11 +0000 (11:23 +0000)] 
Fix set_test_val function declaration to ensure stack is left
untouched.

18 years agoFix a test for InternetCreateUrlA as no Windows platform sets last
Saulius Krasuckas [Mon, 14 Nov 2005 11:23:02 +0000 (11:23 +0000)] 
Fix a test for InternetCreateUrlA as no Windows platform sets last
error here. Make InternetCreateUrlA pass the test.

18 years agoDon't call missing API function.
Saulius Krasuckas [Mon, 14 Nov 2005 11:22:34 +0000 (11:22 +0000)] 
Don't call missing API function.

18 years agoAdd DDBLT_DONOTWAIT flag.
Christian Costa [Mon, 14 Nov 2005 11:22:20 +0000 (11:22 +0000)] 
Add DDBLT_DONOTWAIT flag.
Separate DDBLT_WAIT and DDBLT_ASYNC fixme in Blt method.

18 years agoMove BindToStorage hack to the separated function.
Jacek Caban [Mon, 14 Nov 2005 11:22:01 +0000 (11:22 +0000)] 
Move BindToStorage hack to the separated function.

18 years agoRemove the setting of the result pointer to NULL in creates, tests
Oliver Stieber [Mon, 14 Nov 2005 11:21:46 +0000 (11:21 +0000)] 
Remove the setting of the result pointer to NULL in creates, tests
show that windows doesn't set the result to NULL on error.

18 years agoInit wShowWindow in RTL_USER_PARAMETERS for Wine processes started
Eric Pouech [Mon, 14 Nov 2005 11:21:13 +0000 (11:21 +0000)] 
Init wShowWindow in RTL_USER_PARAMETERS for Wine processes started
from the command-line.

18 years agoAdded extern "C".
Peter Lemenkov [Mon, 14 Nov 2005 11:20:30 +0000 (11:20 +0000)] 
Added extern "C".

18 years agoReformat "see" section, to match c2man requirements.
Markus Amsler [Mon, 14 Nov 2005 11:20:10 +0000 (11:20 +0000)] 
Reformat "see" section, to match c2man requirements.

18 years agoImprove c2man Documented-Total count. Changes:
Markus Amsler [Sat, 12 Nov 2005 19:12:25 +0000 (19:12 +0000)] 
Improve c2man Documented-Total count. Changes:
- add missing description
- complete missing A/W pairs
- document remaining comdlg32 functions

18 years agoImprove c2man Documented-Total count. Changes:
Markus Amsler [Sat, 12 Nov 2005 19:12:03 +0000 (19:12 +0000)] 
Improve c2man Documented-Total count. Changes:
- add missing description
- add missing returns section

18 years agoAdd shdocvw tests to winetest.
Stefan Leichter [Sat, 12 Nov 2005 19:11:27 +0000 (19:11 +0000)] 
Add shdocvw tests to winetest.

18 years agoImplement CLSCTX_INPROC_HANDLER in CoGetClassObject similar to
Robert Shearman [Sat, 12 Nov 2005 19:11:21 +0000 (19:11 +0000)] 
Implement CLSCTX_INPROC_HANDLER in CoGetClassObject similar to
CLSCTX_INPROC_SERVER by looking at the InprocHandler32 registry key
instead of InprocServer32.

18 years agoAdd some extra error information.
Paul Vriens [Sat, 12 Nov 2005 19:11:05 +0000 (19:11 +0000)] 
Add some extra error information.

18 years agoImplement InternetReadFileExA (based on a patch by Brian Gerst).
Robert Shearman [Sat, 12 Nov 2005 19:10:56 +0000 (19:10 +0000)] 
Implement InternetReadFileExA (based on a patch by Brian Gerst).

18 years agoAdd additional sanity checks to the linux input system dinput joystick
Daniel Remenak [Sat, 12 Nov 2005 19:10:38 +0000 (19:10 +0000)] 
Add additional sanity checks to the linux input system dinput joystick
implementation.