Commit graph

42336 commits

Author SHA1 Message Date
Timo Kreuzer
ddf5c06d6f Revert r45774 until I know why qemu is broken
svn path=/trunk/; revision=45792
2010-03-03 16:30:56 +00:00
Christoph von Wittich
96b0a44c36 [SHLWAPI]
sync shlwapi to wine 1.1.39

svn path=/trunk/; revision=45791
2010-03-03 16:21:34 +00:00
Christoph von Wittich
822bfb7915 [HLINK]
sync hlink to wine 1.1.39

svn path=/trunk/; revision=45790
2010-03-03 16:14:25 +00:00
Amine Khaldi
d944603372 - Move ntdef.h from ddk to psdk
- Move EVENT_TYPE to ntdef.h
- Introduce pragma once to wdm.h
- Fix FAST_MUTEX
- FastMutex->Gate => FastMutex->Event
- Improve KeInitializeEvent
- Improve InitializeSListHead

svn path=/branches/header-work/; revision=45789
2010-03-03 16:03:14 +00:00
Timo Kreuzer
243e8910fa Fix some pshpack / poppack includes
svn path=/branches/header-work/; revision=45788
2010-03-03 13:38:45 +00:00
Amine Khaldi
7a1c60b909 - Move more stuff to wdm.h
- Improve PAGED_CODE, ProbeFor{Read,Write} and Cm(UN)RegisterCallback
- Group some related definitions.


svn path=/branches/header-work/; revision=45787
2010-03-03 13:33:58 +00:00
Amine Khaldi
f9ac88867c - Move more stuff to wdm.h
- Fix/Improve InitializeSListHead
- Convert some macros into inline functions

svn path=/branches/header-work/; revision=45786
2010-03-03 13:02:26 +00:00
Amine Khaldi
7c79de7f48 - Move more stuff to wdm.h
- Fix RTL_VERIFYMSG
- Improve NLS_MB_CODE_PAGE_TAG and NLS_MB_OEM_CODE_PAGE_TAG
- Fix/Improve some RTL and Guarded Mutex routines

svn path=/branches/header-work/; revision=45785
2010-03-03 12:39:52 +00:00
Amine Khaldi
3906d78bd2 Add several missing USB related definitions
svn path=/branches/header-work/; revision=45783
2010-03-03 11:42:20 +00:00
Amine Khaldi
db8a0b34de - Move more stuff to wdm.h
- Add missing MM_ALLOCATE_* definitions
- Improve KeTryToAcquireSpinLockAtDpcLevel and KeTestSpinLock
- Fix a typo in BYTES_TO_PAGES definition
- Remove a useless #if block
- Add missing ntddk.h include in ntoskrnl.h

svn path=/branches/header-work/; revision=45782
2010-03-03 11:38:57 +00:00
evb
b7458a6c94 - Fix includes in richard's driver.
- Fix wrong calling to VideoPortCreateEvent. He got parameters all mixed up~


svn path=/trunk/; revision=45781
2010-03-03 08:08:07 +00:00
evb
7dc9efe808 - Video Miniport driver not use ntddk.h, but miniport.h. But, Reactos miniport.h is empty! Add some definitions to miniport.h to get simple drivers to compile, so now can remove ntddk.h from VGA/VBE/XBOX miniports!
- Video Port driver should not use either, but too many changes required. So, define __BROKEN__ to allow ntddk + miniport together.
- Add VideoPortIsNoVesa API definition. Not implemented in ReactOS, used to disable VESA in F8 "Standard VGA Mode". Should implement for VGA-only support on broken VESA machine, and for test.


svn path=/trunk/; revision=45780
2010-03-03 07:09:09 +00:00
Sir Richard
4c15f8900e [VIDEOPRT]: <Committing on behalf of eVb> - Patch to make VideoPort INT10 Services return VP_STATUS instead of NT_STATUS. It is not the same thing.
svn path=/trunk/; revision=45779
2010-03-03 05:22:45 +00:00
Sir Richard
486e587cca [VMX-SVGA]: Some work in progress from my tree. Abandonning this for now due to work reasons, but will likely have eVb hacking on it as some future time. The point of this driver was to expose Mm/VideoPrt issues AND support Qemu hosts with the VMX-SVGA driver option which do not have a way to obtain the driver itself but would still benefit from the acceleration. It was mostly just an experiment.
svn path=/trunk/; revision=45778
2010-03-03 05:21:00 +00:00
Sir Richard
52d93be892 [NTOS]: Do the "funny message" (not really funny, my apologies) shenanigans after the system components have shutdown, and reset the display and call the HAL at least at DPC level (should probably do it at HIGH IRQL, really). This way, we can avoid the context switch to another process while the HAL is executing the BIOS reset display call (done solely for the benefit of the "funny messages", as the video card driver usually resets the display) and thus avoid the "invalid V86 opcode" message sometimes appearing on shutdown. Did you know the "funny messages" take up more storage space than an average embedded micro-controller OS?
svn path=/trunk/; revision=45777
2010-03-03 05:10:38 +00:00
Johannes Anderwald
7cdbb11c87 [KSPROXY]
- Implement IEnumMediaTypes interface
- Implement IKsObject, IKsPropertySet, IKsControl interface for CInputPin
- Verify connection format for CInputPin
- Delegate interface requests to ksproxy plugins
- Implement CKsProxy::FindPin
[MSDVBNP]
- Use FORMAT_None as format specifier

svn path=/trunk/; revision=45776
2010-03-03 03:27:25 +00:00
Cameron Gutman
a3c1764e42 - Initialize the ACPI table (the exact same we do it in KiRosFrldrLpbToNtLpb)
- Fixes ACPI detection when booted in Windows-compatible mode

svn path=/trunk/; revision=45775
2010-03-03 02:38:56 +00:00
Timo Kreuzer
7b6dfd6be4 [NTOS]
- Rewrite trap handler exit stubs in pure assembly, remove gcc inline assembly.
- Replace jmp to C handler with KiCallHandler macro, that expands to jmp on release builds for speed and call on debug builds to fix backtraces.
- Unroll the Syscall handler loop and use volatile keyword when reloading TrapFrame and DescriptorTable from the new stack to prevent the compiler from optimizing it away / moving it out of the loop.
- Bugcheck in KiTrap0DHandler, if the fault couldn't be resolved.
- Remove handling of V86 traps and edited traps in KiServiceExit, ASSERT to make sure they never happen.
- Replace code patching of the syscall exit handler with a function pointer.
- Use __debugbreak() instead of while(TRUE) in KiExitTrapDebugChecks

svn path=/trunk/; revision=45774
2010-03-03 02:27:14 +00:00
Cameron Gutman
85f84b8eb3 - Handle the special case of ACPI device, the fixed feature button, which is not given a handle because it is the direct child of the ACPI root device and is not handled by acpi_bus_get_device (see FIXME in that function). Fortunately, this is not a problem for us since we don't need to differentiate between different "features" of each fixed feature button. We can simply enumerate it as "ACPI\FixedButton" based on its NULL handle.
- Strange registry corruption bug on QEMU is gone now

svn path=/trunk/; revision=45773
2010-03-03 01:40:04 +00:00
Cameron Gutman
426585e336 - Add an entry for the high precision event timer
svn path=/trunk/; revision=45772
2010-03-03 01:02:12 +00:00
Cameron Gutman
ed57cdcfde - Stub GetExtendedTcpTable
- Fixes bug 5201
 - Patch by Olaf Siejka

svn path=/trunk/; revision=45771
2010-03-03 00:05:17 +00:00
Johannes Anderwald
b5b3b3702f [PORTCLS]
- Don't free stream header as wdmaud.sys mmaps it

svn path=/trunk/; revision=45770
2010-03-02 22:37:43 +00:00
Cameron Gutman
d3e6d12585 - Fix some missing strings in cpu.inf
- Add it to build

svn path=/trunk/; revision=45769
2010-03-02 21:10:35 +00:00
Johannes Anderwald
7fc6b68491 [BDAPLGIN]
- Set output variable to null to fixup lazy callers
[KSPROXY]
- Enumerate input / output pins and their names
- Start implementing input / output pin
- Implement IEnumPins interface for CKsProxy filter
[MSDVBNP]
- Fix a bug (IEnumPins::Next should increase reference count on pin)
- Fix a bug (IPin::QueryFilterInfo should increase reference count on parent filter)
- Reference leakage is now fixed

svn path=/trunk/; revision=45768
2010-03-02 20:18:29 +00:00
Christoph von Wittich
c6658bfc85 [JSCRIPT_WINETEST]
sync jscript_winetest to wine 1.1.39

svn path=/trunk/; revision=45767
2010-03-02 19:52:22 +00:00
Christoph von Wittich
86405be2d6 [PSDK]
sync dispex.idl to wine 1.1.39

svn path=/trunk/; revision=45766
2010-03-02 19:50:41 +00:00
Christoph von Wittich
8c353150ee [JSCRIPT]
sync jscript to wine 1.1.39

svn path=/trunk/; revision=45765
2010-03-02 19:46:01 +00:00
Christoph von Wittich
72a689d62e [SHDOCVW]
sync shdocvw to wine 1.1.39

svn path=/trunk/; revision=45764
2010-03-02 19:38:02 +00:00
Christoph von Wittich
6ce96bebac [SHDOCLC]
sync shdoclc to wine 1.1.39

svn path=/trunk/; revision=45763
2010-03-02 19:37:13 +00:00
Timo Kreuzer
79d110cf1c [KDBG]
- Fix attaching to processes (registers / backtraces)

svn path=/trunk/; revision=45762
2010-03-02 19:04:15 +00:00
Dmitry Gorbachev
675322f7bd [Kernel32] Print maximum 128 frames. Some formatting changes.
svn path=/trunk/; revision=45761
2010-03-02 18:16:21 +00:00
Johannes Anderwald
5b5ab3b51f [PORTCLS]
- Add support for IPort interface

svn path=/trunk/; revision=45760
2010-03-02 16:48:28 +00:00
Johannes Anderwald
26a4722d68 [KSPROXY]
- Implement IPersistPropertyBag interface
- Implement IKsObject interface
- Implement enumerating supported property/method/event set from driver and loading the corresponding ksproxy plugins

svn path=/trunk/; revision=45759
2010-03-02 16:27:50 +00:00
Amine Khaldi
f6682d44d2 - Move more stuff to wdm.h
- Fix XMM_SAVE_AREA32
- Fix *PFN_* definitions

svn path=/branches/header-work/; revision=45758
2010-03-02 16:14:22 +00:00
Amine Khaldi
8eb606c117 - Move more stuff to wdm.h
- Improve Interrupt Request Level definitions
- KeGetCurrentIrql : DDKAPI -> NTAPI
- KeGetCurrentThread : Fix the definition, remove a redundant one and NTKERNELAPI -> NTSYSAPI

svn path=/branches/header-work/; revision=45757
2010-03-02 15:49:27 +00:00
Amine Khaldi
7e19d52e3d - Move more stuff to wdm.h
- Fix REG_SET_VALUE_KEY_INFORMATION, REG_DELETE_VALUE_KEY_INFORMATION, REG_SET_INFORMATION_KEY_INFORMATION,  REG_ENUMERATE_KEY_INFORMATION, REG_ENUMERATE_VALUE_KEY_INFORMATION, REG_PRE_CREATE_KEY_INFORMATION, 
REG_POST_CREATE_KEY_INFORMATION, REG_POST_OPERATION_INFORMATION and REG_KEY_HANDLE_CLOSE_INFORMATION definitions.

svn path=/branches/header-work/; revision=45756
2010-03-02 14:53:28 +00:00
Amine Khaldi
144f595dde - Move more stuff to wdm.h
- Group some related definitions
- Add missing TRACE_INFORMATION_CLASS members
- Improve REG_NOTIFY_CLASS
- Fix REG_DELETE_KEY_INFORMATION

svn path=/branches/header-work/; revision=45755
2010-03-02 14:32:50 +00:00
Christoph von Wittich
715db25ce6 [MSHTML]
sync mshtml to wine 1.1.39

svn path=/trunk/; revision=45754
2010-03-02 14:08:15 +00:00
Christoph von Wittich
d64433b26d [QUARTZ]
sync quartz to wine 1.1.39

svn path=/trunk/; revision=45753
2010-03-02 11:38:50 +00:00
Christoph von Wittich
746a027977 [QEDIT]
sync qedit to wine 1.1.39

svn path=/trunk/; revision=45752
2010-03-02 11:28:12 +00:00
Amine Khaldi
74f31b099a - Move more stuff to wdm.h
- Fix KBUGCHECK_CALLBACK_REASON
- Add missing KDPC_IMPORTANCE member

svn path=/branches/header-work/; revision=45751
2010-03-01 21:46:34 +00:00
Amine Khaldi
5bf6e1937a - Move more stuff to wdm.h
- Add _PCI_COMMON_HEADER
- Improve _PCI_COMMON_CONFIG
- Enable msc extensions

svn path=/branches/header-work/; revision=45750
2010-03-01 21:24:36 +00:00
Johannes Anderwald
f374476e03 [MSDVBNP]
- Fix crash when instantiating the filter with graphedt

svn path=/trunk/; revision=45749
2010-03-01 20:00:26 +00:00
Johannes Anderwald
97ba4cfa7e [MSDVBNP]
- Implement IEnumMediaTypes interface
- Implement IEnumPins interface
- Partly implement output pin (IPin interface) for the network provider
- Implement CNetworkProvider::GetState, CNetworkProvider::SetSyncSource, CNetworkProvider::GetSyncSource, CNetworkProvider::EnumPins, CNetworkProvider::QueryFilterInfo
- HACK: comment out deletion of object until reference counting has been fixed

svn path=/trunk/; revision=45748
2010-03-01 18:59:42 +00:00
Johannes Anderwald
23aa06ffce [DXSDK]
- Add BDA types

svn path=/trunk/; revision=45747
2010-03-01 18:55:11 +00:00
Johannes Anderwald
04fdf4b562 [BDAPLGIN]
- Implement IBDA_PinControl::GetPinID, IBDA_PinControl::GetPinType
- Comment out enumeration of IBDA_NetworkProvider
[MSDVBNP]
- Start implementing Network Provider for MPEG-2 based Networks
[MSVIDCTL]
- Start implementing ActiveX Control for Streaming Video

svn path=/trunk/; revision=45746
2010-03-01 15:28:28 +00:00
Amine Khaldi
706a8e639a - Move more stuff to wdm.h
- Improve KWAIT_REASON
- Group related definitions

svn path=/branches/header-work/; revision=45745
2010-03-01 14:32:44 +00:00
Amine Khaldi
15be67bafc - Move more stuff to wdm.h
- Add PCI_DISABLE_LEVEL_INTERRUPT, PCI_STATUS_DETECTED_PARITY_ERROR, PCI_SUBCLASS_NET_ISDN_CTLR, PCI_SUBCLASS_BR_RACEWAY and several missing PCI_CLASS_* definitions

svn path=/branches/header-work/; revision=45744
2010-03-01 14:15:43 +00:00
Christoph von Wittich
3970017d64 [MSI]
hackfix ITERATE_SelfRegModules not to hang on error

svn path=/trunk/; revision=45743
2010-03-01 13:53:34 +00:00
Christoph von Wittich
7d4885984e [MSIEXEC]
sync msiexec to wine 1.1.39

svn path=/trunk/; revision=45742
2010-03-01 13:42:52 +00:00