Robert Dickenson
7f69240625
reactos\subsys\system\usetup\infcache.c (line 1156)
...
CacheSection = Cache->FirstSection;
while (Section != NULL)
changed to:
CacheSection = Cache->FirstSection;
// while (Section != NULL) // RobD - this looks like an error, variable 'Section' never changes inside the while loop...
while (CacheSection != NULL)
and also the same in:
reactos\tools\mkhive\infcache.c (line 1007)
Could Royce or Eric confirm this 'fix' please.
svn path=/trunk/; revision=6158
2003-09-27 09:14:15 +00:00
Thomas Bluemel
b58279d977
partial support for intellimouse
...
svn path=/trunk/; revision=6156
2003-09-27 01:08:19 +00:00
Thomas Bluemel
82a60ec8d1
removed redefinition of WHEEL_DELTA constant
...
svn path=/trunk/; revision=6155
2003-09-27 00:29:52 +00:00
Thomas Bluemel
aa8f2f585a
added constants for WM_XBUTTON* messages
...
svn path=/trunk/; revision=6154
2003-09-27 00:22:10 +00:00
Gé van Geldorp
2deb611ef7
Add NtUserReleaseDC
...
svn path=/trunk/; revision=6152
2003-09-26 21:05:48 +00:00
Gé van Geldorp
e80e96bff4
- Incomplete implementation of ReleaseDC()
...
- Fix pen color bug if pen was selected into a DC more than once
- Cache GetSysColorBrush() and GetSysColorPen()
svn path=/trunk/; revision=6151
2003-09-26 20:58:06 +00:00
Filip Navara
4671a645d8
Changed DPRINT1 to DPRINT when connecting to mouse device.
...
svn path=/trunk/; revision=6150
2003-09-26 20:10:07 +00:00
Eric Kohl
3bc1216b7f
Check for presence of \reactos\ntoskrnl.exe instead of REACTOS disk label to identify the boot cdrom device.
...
svn path=/trunk/; revision=6149
2003-09-26 19:45:04 +00:00
Filip Navara
efec63db2f
Fixed the type of PS2MouseInitializeDataQueue.
...
svn path=/trunk/; revision=6148
2003-09-26 19:37:38 +00:00
Filip Navara
afd54f8f9c
Fixed DIB_BltToVGA and other functions calling it to handle situation where SourcePoint->x % 2 != 0.
...
svn path=/trunk/; revision=6147
2003-09-26 18:38:47 +00:00
Filip Navara
95d5d55bff
Fixed the FileVersion once more. The version should be 5.1.2600 because some applications use the bitmap resources directly and depending on the FileVersion tries to load animations.
...
svn path=/trunk/; revision=6146
2003-09-26 12:17:05 +00:00
Gé van Geldorp
b13d959501
Handle some out of resource situations
...
svn path=/trunk/; revision=6145
2003-09-26 10:45:45 +00:00
Eric Kohl
5a99fbb2ce
Search for devices if a valid vendor and device ids are passes to ScsiPortInitialize().
...
svn path=/trunk/; revision=6144
2003-09-25 23:23:21 +00:00
Thomas Bluemel
fbbaa9a97d
fixed some drawing bugs of scrollbars
...
svn path=/trunk/; revision=6143
2003-09-25 21:16:56 +00:00
Eric Kohl
895c98c856
Replaced ObRosCreateObject() by ObCreateObject() and ObInsertObject().
...
Fixed ObCreateObject() and ObInsertObject().
svn path=/trunk/; revision=6140
2003-09-25 20:09:56 +00:00
Filip Navara
72d8964737
Fixed line endings.
...
svn path=/trunk/; revision=6139
2003-09-25 18:29:45 +00:00
Thomas Bluemel
636d453391
fixed file version to 1,0,0,0
...
svn path=/trunk/; revision=6138
2003-09-25 18:10:22 +00:00
Thomas Bluemel
37d56c9567
fixed version info
...
svn path=/trunk/; revision=6137
2003-09-25 17:05:19 +00:00
Filip Navara
7ea418b4eb
Plug & Play manager improvments + few other things
...
ntoskrnl/ntoskrnl.edf:
Added exports for IoGetDmaAdapter, IoIsWdmVersionAvailable,
KefAcquireSpinLockAtDpcLevel, KefReleaseSpinLockFromDpcLevel,
ExFreePoolWithTag.
ntoskrnl/io/driver.c:
Implementation of NtUnloadDriver.
ntoskrnl/io/device.c:
Added prepending "\\SystemRoot\" and displaying "PnP Loading xxx..." message
in IopInitializeDeviceNodeService.
ntoskrnl/io/pnpmgr.c:
Split into ntoskrnl/io/pnpmgr.c, ntoskrnl/io/deviface.c,
ntoskrnl/io/pnpnotify.c, ntoskrnl/io/pnpmgr/pnpdma.c,
ntoskrnl/io/pnpmgr.c, ntoskrnl/io/pnpmgr/pnproot.c,
ntoskrnl/io/remlock.c, ntoskrnl/io/pnpmgr/pnpreport.c.
Fixed registry handling in IopActionInterrogateDeviceStack and
IopActionConfigureChildServices.
Partial implementation of IoGetDeviceProperty.
ntoskrnl/io/pnpdma.c:
Implementation of IoGetDmaAdapter.
ntoskrnl/io/wdm.c:
New file. Contains implementation of IoIsWdmVersionAvailable.
ntoskrnl/ke/spinlock.c:
Added KeAcquireSpinLockAtDpcLevel and KefReleaseSpinLockFromDpcLevel.
ntoskrnl/mm/pool.c:
Partial implementation of ExFreePoolWithTag.
svn path=/trunk/; revision=6136
2003-09-25 15:54:43 +00:00
Filip Navara
bf8e3b5659
Device driver loading and unloading utilities.
...
svn path=/trunk/; revision=6135
2003-09-25 15:40:23 +00:00
Filip Navara
85fd5b07a7
Fixed generation of Device ID.
...
svn path=/trunk/; revision=6134
2003-09-25 15:21:11 +00:00
Aleksey Bragin
1fc4bb294e
palbitblt installation is added to reactos tests
...
svn path=/trunk/; revision=6133
2003-09-25 15:20:59 +00:00
Aleksey Bragin
19fcfe178b
Slightly changed PALETTE_SetMapping() to obtain pointer to the system palette dynamically instead of just looking into COLOR_sysPal.
...
Good news - palbitblt.exe now works as it as supposed to work under non-paletted mode, and in 16-colors too (but I haven't checked if it looks the same in this mode in Windows too)
svn path=/trunk/; revision=6132
2003-09-25 15:15:03 +00:00
Aleksey Bragin
30174c1155
Changes in COLOR_PaletteLookupPixel() to handel case, when it's called with NULL XlateObj,
...
svn path=/trunk/; revision=6131
2003-09-25 15:12:42 +00:00
Aleksey Bragin
fc32b5f1f9
Changed one UNIMPLEMENTED in NtGdiGetDIBits() to DPRINT (when bits=0, application queries for parameters, and gets them via this way). I guess this isn't fully correct behaviour, but everyone will get clear notification via DPRINT in case this branch of NtGdiGetDIBits is called.
...
svn path=/trunk/; revision=6130
2003-09-25 14:40:42 +00:00
Aleksey Bragin
2f740eff13
PALOBJ_cGetColors(): PalObj is already a pointer to PALGDI, no need to call AccessInternalObjectFromUserObject(PalObj). At least it gives error when this function is invoked. If I'm mistaking (this function is being called with wrong param), please notify me.
...
svn path=/trunk/; revision=6129
2003-09-25 14:32:55 +00:00
Vizzini
07a35efe80
Patch by Skywing:
...
- fixes issues with object manager calling object deletion callbacks at raised IRQL [which creates a ton of problems]
- move kernel debugger init to after ExInit
svn path=/trunk/; revision=6128
2003-09-25 05:12:24 +00:00
Thomas Bluemel
0ae09914df
fixed passing pointers to win32k
...
svn path=/trunk/; revision=6127
2003-09-24 21:09:22 +00:00
Thomas Bluemel
987f34d8d3
fixed file version field
...
svn path=/trunk/; revision=6126
2003-09-24 20:32:11 +00:00
Thomas Bluemel
4b416189e9
add capclock to the build system
...
svn path=/trunk/; revision=6125
2003-09-24 20:05:29 +00:00
Thomas Bluemel
63ebbd13c0
fixed some cvsignore files
...
svn path=/trunk/; revision=6124
2003-09-24 19:55:18 +00:00
Thomas Bluemel
461f1cab84
improved mouse (buttons) handling
...
svn path=/trunk/; revision=6123
2003-09-24 18:39:34 +00:00
Thomas Bluemel
b5d10cd2da
added *.map to the cvsignore file
...
svn path=/trunk/; revision=6122
2003-09-24 17:36:58 +00:00
Thomas Bluemel
e669b2e1cb
Added winhello2 test app by Michael Fritscher
...
svn path=/trunk/; revision=6121
2003-09-24 16:11:05 +00:00
Thomas Bluemel
3fd1dcd5e0
some fixes on on gdi handles
...
svn path=/trunk/; revision=6120
2003-09-24 16:01:32 +00:00
Thomas Bluemel
3ed28b6e6f
some work on scrollbars
...
svn path=/trunk/; revision=6119
2003-09-24 13:41:40 +00:00
Gé van Geldorp
4fe38862eb
NtGdiEllipse() improvements
...
svn path=/trunk/; revision=6118
2003-09-23 21:48:18 +00:00
Thomas Bluemel
3ec27cec15
fixed memory leak in REGION_XorRegion()
...
svn path=/trunk/; revision=6117
2003-09-23 19:33:29 +00:00
Gé van Geldorp
0b9c284361
Fix GDI_HANDLE_INDEX_MASK, thanks to Jonathan Wilson
...
svn path=/trunk/; revision=6116
2003-09-23 18:04:42 +00:00
Filip Navara
cb74b26689
Update of richedit to Wine 20030911 version
...
svn path=/trunk/; revision=6115
2003-09-22 06:11:49 +00:00
Thomas Bluemel
19aeb83a4b
added *.iso and *.cab to cvsignore
...
svn path=/trunk/; revision=6114
2003-09-21 18:17:55 +00:00
Thomas Bluemel
a41feef44a
fixed NtUserClipCursor()
...
svn path=/trunk/; revision=6113
2003-09-21 16:00:24 +00:00
Martin Fuchs
87768e6cca
fix usage of 64 bit constants in SleepEx() and GetQueuedCompletionStatus()
...
svn path=/trunk/; revision=6112
2003-09-21 14:02:30 +00:00
Martin Fuchs
3d57db0ea0
Exception Handling
...
svn path=/trunk/; revision=6111
2003-09-21 13:51:20 +00:00
Martin Fuchs
3c50c8c091
Explorer FAQ
...
svn path=/trunk/; revision=6110
2003-09-21 13:51:02 +00:00
Thomas Bluemel
3a04e43292
fixed NtUserClipCursor()
...
svn path=/trunk/; revision=6109
2003-09-21 11:53:13 +00:00
Gé van Geldorp
3cd94c29a1
Fix some coordinate system mismatches
...
svn path=/trunk/; revision=6108
2003-09-21 06:44:51 +00:00
Thomas Bluemel
52c1dddf12
ported ConvertDefaultLocale() from wine
...
svn path=/trunk/; revision=6107
2003-09-21 01:47:02 +00:00
Thomas Bluemel
de2bded76d
unstubbed national language support functions
...
svn path=/trunk/; revision=6105
2003-09-20 23:37:56 +00:00
Thomas Bluemel
df61aa9b8a
fixed compiler warnings
...
svn path=/trunk/; revision=6104
2003-09-20 22:44:22 +00:00