Alexandre Julliard
|
c4ec2108b1
|
Pass the environment for a child process through the server instead of
relying on the Unix environment.
|
2004-07-16 03:54:35 +00:00 |
Alexandre Julliard
|
df55257115
|
Support for large profile values (based on a patch by Robert
Shearman).
Fixed PROFILE_FlushFile to correctly truncate the file before saving
it.
|
2004-07-16 02:45:00 +00:00 |
Alexandre Julliard
|
9f58ee709d
|
Set the system directory in ntdll as soon as we have determined it.
|
2004-07-15 22:07:21 +00:00 |
Rein Klazes
|
932533ca09
|
In GetVolumeInformationW handle the case when there are no permissions
accessing the device the same way as when no device is found.
|
2004-07-13 23:33:47 +00:00 |
Rob Shearman
|
95dc472698
|
Add TRACE to ReadFileEx.
|
2004-07-09 22:24:59 +00:00 |
Roger Olson
|
0da4277a62
|
Added stub for CreateRemoteThread().
|
2004-07-07 00:49:34 +00:00 |
Dmitry Timoshkov
|
3d36713c2a
|
Initialize also ACP, OEMCP and MACCP in registry on locale change.
|
2004-07-07 00:47:31 +00:00 |
Mike Hearn
|
95012151f9
|
Correct error code returned by CreateFile when given a non-existent
VxD on NT, add a test case.
|
2004-07-06 21:31:24 +00:00 |
Vitaly Lipatov
|
f11ea29268
|
Return proper codepage value in GetCPInfoEx.
|
2004-07-04 00:07:42 +00:00 |
Alexandre Julliard
|
2130f61310
|
In GlobalMemoryStatus, also cap the sum of dwAvailPhys and
dwAvailPageFile at 2Gb to avoid a bug in Photoshop 4.
|
2004-06-24 04:08:33 +00:00 |
Stefan Leichter
|
de16a00fa5
|
Fix the GetPrivateProfileIntA tests for the win9x platform.
|
2004-06-17 23:00:54 +00:00 |
Alexandre Julliard
|
9cb122c2ef
|
Added a couple of tests for SetCurrentDirectoryA.
|
2004-06-17 04:26:59 +00:00 |
Marcus Meissner
|
751e991210
|
Fixed some illegal lvalue casts / increments.
|
2004-06-16 19:02:11 +00:00 |
Francois Gouget
|
497709b9bb
|
Assorted spelling and case fixes.
|
2004-06-15 20:26:45 +00:00 |
Dmitry Timoshkov
|
c7d2379916
|
- Fix erroneous use of LOCALE_SDATE in the place of LOCALE_SSHORTDATE.
- Fix incorrect assumptions about format strings when parsing date
formats and setting LOCALE_IDATE and LOCALE_ILDATE values.
|
2004-06-15 17:02:31 +00:00 |
Alexandre Julliard
|
f435914b88
|
Added magic number in the FindFirstFile structure to allow more robust
detection of bad handles (with help from Aric Stewart).
|
2004-06-15 00:55:04 +00:00 |
Alexandre Julliard
|
cc461324da
|
Store the number of processors in the PEB structure.
More correct support for setting critical section spin counts (based
on a patch by Robert Shearman).
|
2004-06-15 00:52:03 +00:00 |
Alexandre Julliard
|
410db2ada4
|
Rewrote SetFilePointer to use SetFilePointerEx.
|
2004-06-14 19:40:44 +00:00 |
Mike McCormack
|
6122eeb5ca
|
Implemented SetFilePointerEx.
|
2004-06-14 17:56:50 +00:00 |
Eric Pouech
|
62a860988c
|
Const correctness, pointer cast correctness, removed extraneous ';'.
|
2004-06-14 17:04:34 +00:00 |
Eric Pouech
|
b0fd2ade62
|
- Added ProcessBasicInformation class to ntdll.NtQueryInformationProcess.
- Make use of it in kernel32.
|
2004-06-14 17:02:00 +00:00 |
Robert Shearman
|
6c91e9bff6
|
Use the same path transformation for WaitNamedPipe and
CreateNamedPipe.
|
2004-06-14 17:00:21 +00:00 |
Rein Klazes
|
136a93e6be
|
Set last error value to ERROR_CALL_NOT_IMPLEMENTED in QueryActCtxW()
to make Photoshop 7.0 work again.
|
2004-06-14 16:59:19 +00:00 |
Rein Klazes
|
667ac7ff5e
|
Fix a crash when launching Unix executables.
|
2004-06-04 18:01:02 +00:00 |
Dimitrie O. Paun
|
f28155de3f
|
In Win9x, {Create,Remove}Directory returns ERROR_PATH_NOT_FOUND when
given directories containing '*' or '?'.
|
2004-06-04 17:59:05 +00:00 |
Dimitrie O. Paun
|
b395a0c560
|
Win9x does not convert FIXED to MOVEABLE. It also discards locked
memory.
|
2004-06-04 17:58:49 +00:00 |
Robert Reif
|
55b57417e1
|
I got the test for failure on NT wrong in my last patch. The function
returns 0 on error and sets last error to ERROR_INVALID_FLAGS.
|
2004-06-03 23:19:27 +00:00 |
Alexandre Julliard
|
10e6f57fab
|
Set the WINEPRELOADRESERVE variable when starting a new process.
|
2004-06-03 00:25:08 +00:00 |
Raphael Junqueira
|
ac825d02f4
|
Semi stubs for GetSystemWow64Directory[AW].
|
2004-06-02 21:32:55 +00:00 |
Dimitrie O. Paun
|
6e28fe7144
|
Do not fix the drive letter to 'C', it fails on other people's boxes.
|
2004-06-02 00:36:36 +00:00 |
Mike Hearn
|
3c705bf008
|
Use TRACE rather than FIXME for check_resource_write.
|
2004-06-01 19:45:15 +00:00 |
Robert Reif
|
4751ff2b44
|
NT 4.0 doesn't support MAP_EXPAND_LIGATURES so skip test if it returns
ERROR_INVALID_FLAGS.
|
2004-05-30 03:11:24 +00:00 |
Alexandre Julliard
|
b1abca8a5d
|
Initial version of the Wine preloader, used to reserve memory
areas at startup. Based on the work of Mike McCormack.
|
2004-05-28 20:59:22 +00:00 |
Mike Hearn
|
b4c2968049
|
Print module name when calling LibMain.
|
2004-05-28 19:29:20 +00:00 |
Alexandre Julliard
|
f974c8598e
|
Ensure that we can initialize the DOS memory area correctly even if it
has been pre-reserved already.
|
2004-05-28 03:45:47 +00:00 |
Rein Klazes
|
73ed82c373
|
Fix the missing tread ID of some snoop return traces.
|
2004-05-27 20:00:37 +00:00 |
Alexandre Julliard
|
7109423ec0
|
Allocate the shared heap inside the Win9x shared memory area.
|
2004-05-25 05:13:44 +00:00 |
Alexandre Julliard
|
7163000df8
|
Only create the shared heap when Windows version is Win9x.
|
2004-05-25 05:08:28 +00:00 |
Alexandre Julliard
|
94d74b5fed
|
Added support for managing reserved memory areas in libwine and ntdll.
Try to reserve everything above 0x80000000 on startup.
|
2004-05-25 01:29:24 +00:00 |
Dmitry Timoshkov
|
b6dae78bac
|
Avoid a failure under Win9x.
|
2004-05-25 00:20:50 +00:00 |
Dmitry Timoshkov
|
d8a59cdfd5
|
Explicitly specify name of the pipe in the pipe test.
|
2004-05-24 19:06:52 +00:00 |
Eric Pouech
|
09fed7567b
|
Some fixes to module browsing.
|
2004-05-24 19:06:32 +00:00 |
Dmitry Timoshkov
|
8811628cff
|
Add a test for opening an already opened file for writing in a not
compatible sharing mode.
|
2004-05-22 03:14:17 +00:00 |
Christian Costa
|
fe0460fd2f
|
Added some traces to kernel file functions.
|
2004-05-22 03:13:56 +00:00 |
Alexandre Julliard
|
eb04fd22f8
|
Converted the memory views list to use the standard functions from
wine/list.h.
Restructured some functions to always return proper NT status codes.
A couple of optimizations.
Added a few tests for file mappings.
|
2004-05-21 20:58:44 +00:00 |
Alexandre Julliard
|
16fe224275
|
Don't use the Wine debug functions.
Fixed wrong A/W length checks.
|
2004-05-20 01:19:05 +00:00 |
Eric Pouech
|
df93f2eeee
|
GetModuleFileName[AW] doesn't terminate the string if the buffer is
too small.
|
2004-05-19 03:22:55 +00:00 |
Eric Pouech
|
bde649c356
|
Added some missing prototypes.
|
2004-05-18 20:43:29 +00:00 |
Patrik Stridvall
|
070db4e5de
|
Fixed some issues found by winapi_check.
|
2004-05-17 21:08:31 +00:00 |
Alexandre Julliard
|
8c29b5f0cc
|
Removed the no longer used SMB file I/O support, we can't do reliable
file I/O in user space anyway.
|
2004-05-14 22:24:48 +00:00 |