reactos.git
9 years ago[NTVDM]
Hermès Bélusca-Maïto [Wed, 29 Jan 2014 00:25:43 +0000 (00:25 +0000)]
[NTVDM]
- Enable experimental sound support (only PC speaker for the moment, aka. uses beep.sys).
- Introduce a #define WORKING_TIMER which aim is to disable the currently problematic approximate performance counter value calculation done in order not to call QueryPerformanceCounter each time.
  The problem is that we then compute a number of clock ticks for the PIT, which becomes negative, and therefore everything starts to hang.
  Disabling this code and calling each time QueryPerformanceCounter, fixes everything; we gain in precision but we loose in performance...
  A definitive fix must be found, [TheFlash] !!

This fixes sound (and hangs) in Advanced NetWars, Dangerous Dave, ElitePlus and Rescue Rover (the games that I've tested so far).

svn path=/branches/ntvdm/; revision=61875

9 years ago[NTVDM]: Add debug print for timer ticks to try to find why the emulator sometimes...
Hermès Bélusca-Maïto [Tue, 28 Jan 2014 20:39:16 +0000 (20:39 +0000)]
[NTVDM]: Add debug print for timer ticks to try to find why the emulator sometimes hangs...

svn path=/branches/ntvdm/; revision=61867

9 years ago[NTVDM]
Hermès Bélusca-Maïto [Tue, 28 Jan 2014 20:24:24 +0000 (20:24 +0000)]
[NTVDM]
Part 2 of PIT + sound fix.
- Move port 61h management from speaker.c to the emulator.c module;
- Add PIT OUT callbacks support;
- Add (unimplemented) PitSetGate function (will be used later on).
Still WIP.

svn path=/branches/ntvdm/; revision=61866

9 years ago[NTVDM]: Replace my #if 0 by #ifdef IPS_DISPLAY for DPRINTing (or not) the no. of...
Hermès Bélusca-Maïto [Tue, 28 Jan 2014 20:18:52 +0000 (20:18 +0000)]
[NTVDM]: Replace my #if 0 by #ifdef IPS_DISPLAY for DPRINTing (or not) the no. of instructions per seconds.

svn path=/branches/ntvdm/; revision=61865

9 years ago[NTVDM]: Remove erroneous comments.
Hermès Bélusca-Maïto [Tue, 28 Jan 2014 17:26:26 +0000 (17:26 +0000)]
[NTVDM]: Remove erroneous comments.

svn path=/branches/ntvdm/; revision=61861

9 years ago[NTVDM]
Hermès Bélusca-Maïto [Sun, 26 Jan 2014 21:51:27 +0000 (21:51 +0000)]
[NTVDM]
- Break the DOS source file into the "DOS BIOS" (also known in other places as ibmbio or io or...), which is in fact some kind of hardware abstraction layer, and the "DOS BDOS" kernel (also known in other places as ibmdos.com or msdos.sys or...).
- Add in DEM the possibility of loading the DOS from another files (WIP).

svn path=/branches/ntvdm/; revision=61846

9 years ago[NTVDM]
Hermès Bélusca-Maïto [Sun, 26 Jan 2014 18:25:59 +0000 (18:25 +0000)]
[NTVDM]
- Start to refactor the DOS sources:
  Introduce the DEM (DOS Emulation) support library that is used by our built-in DOS, and that is used (via BOPs) by windows NT DOS (files: ntio.sys and ntdos.sys).
- Export some of DEM functions; stub most of them and implement the remaining ones (with existing code that we had in dos.c before).

svn path=/branches/ntvdm/; revision=61838

9 years ago[NTVDM]: Implement a basic BIOS Wait interrupt INT 15h, AH=86h.
Hermès Bélusca-Maïto [Sat, 25 Jan 2014 22:29:54 +0000 (22:29 +0000)]
[NTVDM]: Implement a basic BIOS Wait interrupt INT 15h, AH=86h.

svn path=/branches/ntvdm/; revision=61821

9 years ago[NTVDM]
Hermès Bélusca-Maïto [Sat, 25 Jan 2014 18:57:17 +0000 (18:57 +0000)]
[NTVDM]
- Shut up some DPRINTs in io.c and ntvdm.c
- I forgot to update the call to PitClock in the previous revision...

svn path=/branches/ntvdm/; revision=61816

9 years ago[NTVDM]: Each PIT channel is decreased by the same amount of "Count".
Hermès Bélusca-Maïto [Sat, 25 Jan 2014 18:56:12 +0000 (18:56 +0000)]
[NTVDM]: Each PIT channel is decreased by the same amount of "Count".

svn path=/branches/ntvdm/; revision=61815

9 years ago[NTVDM]
Hermès Bélusca-Maïto [Sat, 25 Jan 2014 17:00:09 +0000 (17:00 +0000)]
[NTVDM]
Big PIT fix Part 1/X
Currently, sound frequency is fixed (in Advanced NetWars, Rover, Dave)

svn path=/branches/ntvdm/; revision=61810

9 years ago[NTVDM]
Hermès Bélusca-Maïto [Sat, 25 Jan 2014 16:23:27 +0000 (16:23 +0000)]
[NTVDM]
Welcome sound in Advanced NetWars!
However it won't work totally due to problems in the PIT or in the sound emulation (and as a result, the emulator will "hang").

svn path=/branches/ntvdm/; revision=61809

9 years ago[NTVDM]
Aleksandar Andrejevic [Sat, 25 Jan 2014 00:53:10 +0000 (00:53 +0000)]
[NTVDM]
Add two general-purpose variables to the interrupt handler stub stack.
Fix INT 29h so that it works correctly when the INT 10h, AH = 0Eh call is hooked.

svn path=/branches/ntvdm/; revision=61797

9 years ago[NTVDM]
Hermès Bélusca-Maïto [Sat, 25 Jan 2014 00:21:51 +0000 (00:21 +0000)]
[NTVDM]
- Move all the hardware initialization to EmulatorInitialize (since emulator.c can be viewed as support functions for emulating a PC motherboard) --> PS2 and VGA go there.
- Break bios.c into bios.c and kbdbios.c (the keyboard bios module) (according to the IBM documentation as well as other emulator sources or SeaBIOS or...).
- Move Exception handling from int32.c to emulator.c, because it's something tight to the emulator, not to the interrupt system by itself (yet it happens that INT 00h to 07h are commonly set to some exception handlers). In the bios.c, initialize those vectors with the default exception handler.
- Handling IRQs is done fully in bios.c now: introduce PicSetIRQMask and EnableHwIRQ helper functions (adapted from their equivalents from SeaBIOS) that allows the bios to set (and activate in the PIC) a given IRQ with its corresponding handler. Also introduce PicIRQComplete that serves as a PIC IRQ completer (i.e. sends the EOI to the right PIC(s)).
- Continuing on that, at the moment I set dumb default PIC IRQ handlers for IRQ 08h - 0Fh and IRQ 70h - 77h).
- By default I disable all the IRQs; there are then set on-demand with EnableHwIRQ.
- Rework the POST (aka. BiosInitialize function):
  * the memory size is now get from the CMOS (as well as the extended memory size via INT 12h, AH=88h),
  * then we initialize the interrupts,
  * then platform hardware (ie. the chips) are initialized,
  * and finally the keyboard and video bioses.
- As said before, move memory sizes into the CMOS.
- Simplify video bios initialization.

svn path=/branches/ntvdm/; revision=61796

9 years ago[NTVDM]: Register functions are already declared via the inclusion of ddk/vddsvc...
Hermès Bélusca-Maïto [Fri, 24 Jan 2014 20:37:40 +0000 (20:37 +0000)]
[NTVDM]: Register functions are already declared via the inclusion of ddk/vddsvc.h. However still keep their definitions also in registers.h (yet #if 0'ed out) for reference.

svn path=/branches/ntvdm/; revision=61795

9 years ago[NTVDM]: Clean ConsoleFramebuffer after leaving graphics mode.
Hermès Bélusca-Maïto [Fri, 24 Jan 2014 20:36:17 +0000 (20:36 +0000)]
[NTVDM]: Clean ConsoleFramebuffer after leaving graphics mode.

svn path=/branches/ntvdm/; revision=61794

9 years ago[NTVDM]: Use EmulatorRead/WriteMemory instead of directly use the VgaXXXMemory helpers.
Hermès Bélusca-Maïto [Fri, 24 Jan 2014 00:41:26 +0000 (00:41 +0000)]
[NTVDM]: Use EmulatorRead/WriteMemory instead of directly use the VgaXXXMemory helpers.

svn path=/branches/ntvdm/; revision=61786

9 years ago[NTVDM]: Improve the icon, and add 16x16 format.
Hermès Bélusca-Maïto [Thu, 23 Jan 2014 23:46:10 +0000 (23:46 +0000)]
[NTVDM]: Improve the icon, and add 16x16 format.

svn path=/branches/ntvdm/; revision=61785

9 years agoSync to trunk revision 61757.
Hermès Bélusca-Maïto [Wed, 22 Jan 2014 22:56:41 +0000 (22:56 +0000)]
Sync to trunk revision 61757.

svn path=/branches/ntvdm/; revision=61758

9 years ago[CMAKE]
Amine Khaldi [Wed, 22 Jan 2014 22:46:30 +0000 (22:46 +0000)]
[CMAKE]
* Apply the 5.01 subsystem version regardless of cl version. All the supported MSVC toolchains accept it.

svn path=/trunk/; revision=61756

9 years ago[KSECDD]
Timo Kreuzer [Wed, 22 Jan 2014 20:52:01 +0000 (20:52 +0000)]
[KSECDD]
Implement IRP_MJ_QUERY_INFORMATION and IRP_MJ_QUERY_VOLUME_INFORMATION

svn path=/trunk/; revision=61755

9 years ago[KSECDD]
Timo Kreuzer [Wed, 22 Jan 2014 16:58:36 +0000 (16:58 +0000)]
[KSECDD]
Start implementing ksecdd

svn path=/trunk/; revision=61754

9 years ago[NTOSKRNL]
Timo Kreuzer [Wed, 22 Jan 2014 16:29:26 +0000 (16:29 +0000)]
[NTOSKRNL]
- Implement NtPrivilegedServiceAuditAlarm, the internal function SepAdtPrivilegedServiceAuditAlarm is not implemented yet.
- Stubplement SepAccessCheckAndAuditAlarm and make NtAccessCheckAndAuditAlarm, NtAccessCheckByTypeAndAuditAlarm, NtAccessCheckByTypeResultListAndAuditAlarm and NtAccessCheckByTypeResultListAndAuditAlarmByHandle (love that name) wrappers around it.

svn path=/trunk/; revision=61753

9 years ago[NTOSKRNL]
Timo Kreuzer [Wed, 22 Jan 2014 15:05:16 +0000 (15:05 +0000)]
[NTOSKRNL]
Implement TokenSessionReference case in NtSetInformationToken, also make sure not to leak a reference on the token in case of an exception.

svn path=/trunk/; revision=61752

9 years ago[NTOSKRNL]
Timo Kreuzer [Wed, 22 Jan 2014 14:48:45 +0000 (14:48 +0000)]
[NTOSKRNL]
Fix return type of PsSetProcessSecurityPort

svn path=/trunk/; revision=61751

9 years ago[MSGINA]
Eric Kohl [Tue, 21 Jan 2014 23:31:13 +0000 (23:31 +0000)]
[MSGINA]
Move the unlock code to a separate function and display error messages if user name or password do not match.

svn path=/trunk/; revision=61750

9 years ago[DBGHELP]
Amine Khaldi [Tue, 21 Jan 2014 18:04:09 +0000 (18:04 +0000)]
[DBGHELP]
* Move some inclusions to the main header.
* Remove inclusions and definitions that already exist in the main header.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61749

9 years ago[CRYPT32]
Amine Khaldi [Tue, 21 Jan 2014 18:01:34 +0000 (18:01 +0000)]
[CRYPT32]
* Move cryptres.h inclusion to the main header.
CORE-7716

svn path=/trunk/; revision=61748

9 years ago[CRTDLL]
Amine Khaldi [Tue, 21 Jan 2014 18:00:17 +0000 (18:00 +0000)]
[CRTDLL]
* We don't need PCH for one source file modules.
CORE-7716

svn path=/trunk/; revision=61747

9 years ago[COMDLG32]
Amine Khaldi [Tue, 21 Jan 2014 17:59:36 +0000 (17:59 +0000)]
[COMDLG32]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61746

9 years ago[COMCTL32]
Amine Khaldi [Tue, 21 Jan 2014 17:58:34 +0000 (17:58 +0000)]
[COMCTL32]
* Move some inclusions to the main header.
* Remove inclusions and definitions that already exist in the main header/resource file.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61745

9 years ago[CABINET]
Amine Khaldi [Tue, 21 Jan 2014 17:56:16 +0000 (17:56 +0000)]
[CABINET]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61744

9 years ago[BROWSEUI]
Amine Khaldi [Tue, 21 Jan 2014 17:55:08 +0000 (17:55 +0000)]
[BROWSEUI]
* Remove one time inclusions from the main header and put them back where they belong.
* Set the default debugging channel globally through the main header.
* Improve the main header.
CORE-7716

svn path=/trunk/; revision=61743

9 years ago[EVENTLOG]
Eric Kohl [Mon, 20 Jan 2014 21:32:49 +0000 (21:32 +0000)]
[EVENTLOG]
LogfClearFile: Write the backup file and add status checks.

svn path=/trunk/; revision=61742

9 years ago[MSGINA]
Eric Kohl [Mon, 20 Jan 2014 21:23:17 +0000 (21:23 +0000)]
[MSGINA]
Save the password in the gina-context after successful logon and use it to check the password when unlocking the computer.

svn path=/trunk/; revision=61741

9 years ago[TRANSLATIONS]
Amine Khaldi [Mon, 20 Jan 2014 19:42:49 +0000 (19:42 +0000)]
[TRANSLATIONS]
* Massive update of Romanian resources. Brought to you by Ștefan Fulea.
CORE-7778 #resolve #comment Committed in r61740. Thanks !

svn path=/trunk/; revision=61740

9 years ago[RAPPS]
Amine Khaldi [Mon, 20 Jan 2014 18:00:14 +0000 (18:00 +0000)]
[RAPPS]
* Maintenance of Romanian resources. Brought to you by Ștefan Fulea.
CORE-7761 #resolve #comment Committed in r61739. Cheers ;)

svn path=/trunk/; revision=61739

9 years ago[AVIFIL32]
Amine Khaldi [Mon, 20 Jan 2014 13:18:32 +0000 (13:18 +0000)]
[AVIFIL32]
* Improve the GUIDs situation.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61738

9 years ago[ATL100]
Amine Khaldi [Mon, 20 Jan 2014 13:16:55 +0000 (13:16 +0000)]
[ATL100]
* Create a main header and move some inclusions to it.
CORE-7716

svn path=/trunk/; revision=61737

9 years ago[ADVAPI32]
Amine Khaldi [Mon, 20 Jan 2014 13:16:06 +0000 (13:16 +0000)]
[ADVAPI32]
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61736

9 years ago[ACTIVEDS]
Amine Khaldi [Mon, 20 Jan 2014 13:14:55 +0000 (13:14 +0000)]
[ACTIVEDS]
* Create a main header and move some inclusions to it.
CORE-7716

svn path=/trunk/; revision=61735

9 years ago[ACLUI]
Amine Khaldi [Mon, 20 Jan 2014 13:14:06 +0000 (13:14 +0000)]
[ACLUI]
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61734

9 years ago[SLAYER]
Amine Khaldi [Mon, 20 Jan 2014 13:12:05 +0000 (13:12 +0000)]
[SLAYER]
* We don't need PCH for one source file modules.
CORE-7716

svn path=/trunk/; revision=61733

9 years ago[FONTEXT]
Amine Khaldi [Mon, 20 Jan 2014 13:10:32 +0000 (13:10 +0000)]
[FONTEXT]
* Remove one time inclusions from the main header and put them back where they belong.
* Do not include debug.h into the main header.
CORE-7716

svn path=/trunk/; revision=61732

9 years ago[DESKMON]
Amine Khaldi [Mon, 20 Jan 2014 13:09:04 +0000 (13:09 +0000)]
[DESKMON]
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61731

9 years ago[DESKADP]
Amine Khaldi [Mon, 20 Jan 2014 13:08:23 +0000 (13:08 +0000)]
[DESKADP]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61730

9 years ago[OPENGL32]
Amine Khaldi [Mon, 20 Jan 2014 13:07:26 +0000 (13:07 +0000)]
[OPENGL32]
* Move wine/debug.h inclusion to the main header.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61729

9 years ago[NTDLL]
Amine Khaldi [Mon, 20 Jan 2014 12:59:27 +0000 (12:59 +0000)]
[NTDLL]
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61728

9 years ago[WINED3D]
Amine Khaldi [Mon, 20 Jan 2014 12:57:33 +0000 (12:57 +0000)]
[WINED3D]
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61727

9 years ago[QUARTZ]
Amine Khaldi [Mon, 20 Jan 2014 12:37:33 +0000 (12:37 +0000)]
[QUARTZ]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61726

9 years ago[QEDIT]
Amine Khaldi [Mon, 20 Jan 2014 12:35:57 +0000 (12:35 +0000)]
[QEDIT]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61725

9 years ago[MSDMO]
Amine Khaldi [Mon, 20 Jan 2014 12:34:50 +0000 (12:34 +0000)]
[MSDMO]
* Create a main header and move some inclusions to it.
* Set the default debugging channel globally through the main header.
CORE-7716

svn path=/trunk/; revision=61724

9 years ago[DXGI]
Amine Khaldi [Mon, 20 Jan 2014 11:34:21 +0000 (11:34 +0000)]
[DXGI]
* Move some inclusions to the main header.
* Set the default debugging channel globally through the main header.
* Remove inclusions and definitions that already exist in the main header.
* Improve header inclusions.
* Improve the GUIDs situation.
CORE-7716

svn path=/trunk/; revision=61723

9 years ago[DXDIAGN]
Amine Khaldi [Mon, 20 Jan 2014 11:32:43 +0000 (11:32 +0000)]
[DXDIAGN]
* Move some inclusions to the main header.
* Set the default debugging channel globally through the main header.
* Remove inclusions and definitions that already exist in the main header.
* Improve header inclusions.
* Improve the GUIDs situation.
CORE-7716

svn path=/trunk/; revision=61722

9 years ago[DSOUND]
Amine Khaldi [Mon, 20 Jan 2014 11:30:39 +0000 (11:30 +0000)]
[DSOUND]
* Move some inclusions to the main header.
* Set the default debugging channel globally through the main header.
* Remove inclusions and definitions that already exist in the main header.
* Improve header inclusions.
* Improve the GUIDs situation.
CORE-7716

svn path=/trunk/; revision=61721

9 years ago[DPLAYX]
Amine Khaldi [Mon, 20 Jan 2014 11:28:30 +0000 (11:28 +0000)]
[DPLAYX]
* Move some inclusions to the main header.
* Set the default debugging channel globally through the main header.
* Remove inclusions and definitions that already exist in the main header.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61720

9 years ago[DMUSIC]
Amine Khaldi [Mon, 20 Jan 2014 11:27:12 +0000 (11:27 +0000)]
[DMUSIC]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61719

9 years ago[DINPUT]
Amine Khaldi [Mon, 20 Jan 2014 11:25:53 +0000 (11:25 +0000)]
[DINPUT]
* Move some inclusions to the main header.
* Set the default debugging channel globally through the main header.
* Remove inclusions and definitions that already exist in the main header.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61718

9 years ago[DEVENUM]
Amine Khaldi [Mon, 20 Jan 2014 11:22:40 +0000 (11:22 +0000)]
[DEVENUM]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61717

9 years ago[DDRAW]
Amine Khaldi [Mon, 20 Jan 2014 11:20:33 +0000 (11:20 +0000)]
[DDRAW]
* Improve the GUIDs situation.
* Improve the main header.
CORE-7716

svn path=/trunk/; revision=61716

9 years ago[D3DXOF]
Amine Khaldi [Mon, 20 Jan 2014 11:18:23 +0000 (11:18 +0000)]
[D3DXOF]
* Move some inclusions to the main header.
* Remove inclusions and definitions that already exist in the main header.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61715

9 years ago[D3DX9_36]
Amine Khaldi [Mon, 20 Jan 2014 11:15:56 +0000 (11:15 +0000)]
[D3DX9_36]
* Improve the GUIDs situation.
* Improve the main header.
CORE-7716

svn path=/trunk/; revision=61714

9 years ago[User32]
James Tabor [Mon, 20 Jan 2014 06:42:39 +0000 (06:42 +0000)]
[User32]
- Sync port MDI with wine.
- Add patch from wine bug 9435.
- Commented out wine code.

svn path=/trunk/; revision=61713

9 years ago[explorer_new]
Christoph von Wittich [Sun, 19 Jan 2014 19:49:12 +0000 (19:49 +0000)]
[explorer_new]
use strsafe functions

svn path=/trunk/; revision=61712

9 years ago[devcpux]
Christoph von Wittich [Sun, 19 Jan 2014 19:27:10 +0000 (19:27 +0000)]
[devcpux]
use strsafe functions

svn path=/trunk/; revision=61711

9 years ago[devcpux]
Christoph von Wittich [Sun, 19 Jan 2014 19:18:45 +0000 (19:18 +0000)]
[devcpux]
tabs to spaces

svn path=/trunk/; revision=61710

9 years ago[desk.cpl]
Christoph von Wittich [Sun, 19 Jan 2014 19:15:08 +0000 (19:15 +0000)]
[desk.cpl]
strsafe++

svn path=/trunk/; revision=61709

9 years ago[DDK][NDK]
Thomas Faber [Sun, 19 Jan 2014 15:05:23 +0000 (15:05 +0000)]
[DDK][NDK]
- Fix some members of SHARED_CACHE_MAP
- Move MBCB to NDK where it belongs

svn path=/trunk/; revision=61708

9 years ago[DDK][NDK][RTL][WS2_32_NEW]
Thomas Faber [Sun, 19 Jan 2014 14:56:13 +0000 (14:56 +0000)]
[DDK][NDK][RTL][WS2_32_NEW]
- Add missing and improve existing declarations of RtlIpv4StringToAddress*

svn path=/trunk/; revision=61707

9 years ago[RAPPS]
Daniel Reimer [Sun, 19 Jan 2014 13:17:09 +0000 (13:17 +0000)]
[RAPPS]
Add Mpxplay to Application manager by Alex (jedi-to-be)
CORE-7290 #resolve #comment Committed and slightly fixed DL link and comment. Thx for help!

svn path=/trunk/; revision=61706

9 years ago[D3DCOMPILER_43]
Amine Khaldi [Sun, 19 Jan 2014 10:47:56 +0000 (10:47 +0000)]
[D3DCOMPILER_43]
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61705

9 years ago[D3D9]
Amine Khaldi [Sun, 19 Jan 2014 10:46:55 +0000 (10:46 +0000)]
[D3D9]
* Improve the GUIDs situation.
CORE-7716

svn path=/trunk/; revision=61704

9 years ago[D3D8]
Amine Khaldi [Sun, 19 Jan 2014 10:45:19 +0000 (10:45 +0000)]
[D3D8]
* Improve the GUIDs situation.
CORE-7716

svn path=/trunk/; revision=61703

9 years ago[AMSTREAM]
Amine Khaldi [Sun, 19 Jan 2014 10:43:28 +0000 (10:43 +0000)]
[AMSTREAM]
* Move some inclusions to the main header.
* Set the default debugging channel globally through the main header.
* Remove inclusions and definitions that already exist in the main header.
CORE-7716

svn path=/trunk/; revision=61702

9 years ago[WINED3DCFG]
Amine Khaldi [Sun, 19 Jan 2014 10:41:43 +0000 (10:41 +0000)]
[WINED3DCFG]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61701

9 years ago[TIMEDATE]
Amine Khaldi [Sun, 19 Jan 2014 10:40:50 +0000 (10:40 +0000)]
[TIMEDATE]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61700

9 years ago[SYSDM]
Amine Khaldi [Sun, 19 Jan 2014 10:39:14 +0000 (10:39 +0000)]
[SYSDM]
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61699

9 years ago[POWERCFG]
Amine Khaldi [Sun, 19 Jan 2014 10:37:02 +0000 (10:37 +0000)]
[POWERCFG]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61698

9 years ago[MMSYS]
Amine Khaldi [Sun, 19 Jan 2014 10:35:30 +0000 (10:35 +0000)]
[MMSYS]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve the GUIDs situation.
* Improve the main header.
CORE-7716

svn path=/trunk/; revision=61697

9 years ago[MAIN]
Amine Khaldi [Sun, 19 Jan 2014 10:33:36 +0000 (10:33 +0000)]
[MAIN]
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61696

9 years ago[INTL]
Amine Khaldi [Sun, 19 Jan 2014 10:31:28 +0000 (10:31 +0000)]
[INTL]
* Remove one time shellapi.h inclusion from the main header and put it back where it belongs.
* Do not include debug.h into the main header.
CORE-7716

svn path=/trunk/; revision=61695

9 years ago[INPUT]
Amine Khaldi [Sun, 19 Jan 2014 10:28:42 +0000 (10:28 +0000)]
[INPUT]
* Remove one time inclusions from the main header and put them back where they belong.
* Remove redundant resource.h inclusion.
CORE-7716

svn path=/trunk/; revision=61694

9 years ago[INETCPL]
Amine Khaldi [Sun, 19 Jan 2014 10:26:08 +0000 (10:26 +0000)]
[INETCPL]
* Move some inclusions to the main header.
* Extract the resource related definitions into resource.h and include it in both the main header and the resource file.
* Set the default debugging channel globally through the main header.
* Remove inclusions and definitions that already exist in the main header/resource file.
CORE-7716

svn path=/trunk/; revision=61693

9 years ago[DESK]
Amine Khaldi [Sun, 19 Jan 2014 10:21:10 +0000 (10:21 +0000)]
[DESK]
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61692

9 years ago[APPWIZ]
Amine Khaldi [Sun, 19 Jan 2014 10:17:54 +0000 (10:17 +0000)]
[APPWIZ]
* Move some inclusions to the main header.
* Set the default debugging channel globally through the main header.
* Remove inclusions and definitions that already exist in the main header.
CORE-7716

svn path=/trunk/; revision=61691

9 years ago[HOTPLUG]
Amine Khaldi [Sun, 19 Jan 2014 10:14:18 +0000 (10:14 +0000)]
[HOTPLUG]
* We don't need PCH for one source file modules.
CORE-7716

svn path=/trunk/; revision=61690

9 years ago[EVENTVWR]
Eric Kohl [Sun, 19 Jan 2014 10:10:38 +0000 (10:10 +0000)]
[EVENTVWR]
Make two more strings localizable. Patch by Ștefan Fulea.
CORE-7785 #resolve #comment Thanks a lot!

svn path=/trunk/; revision=61689

9 years ago[DDK]
Thomas Faber [Sun, 19 Jan 2014 09:54:14 +0000 (09:54 +0000)]
[DDK]
- Add missing reserved fields to NDIS51_MINIPORT_CHARACTERISTICS

svn path=/trunk/; revision=61688

9 years ago[USETUP]
Eric Kohl [Sun, 19 Jan 2014 09:47:27 +0000 (09:47 +0000)]
[USETUP]
Usetup does not properly return from quit+cancel. Patch by Ștefan Fulea.
CORE-7783 #resolve #comment Thanks a lot!

svn path=/trunk/; revision=61687

9 years ago[DDK][XDK]
Thomas Faber [Sun, 19 Jan 2014 09:28:53 +0000 (09:28 +0000)]
[DDK][XDK]
- Do not evaluate the NT_ASSERT macro's parameter before stringifying it. Forgot this in r61008/CORE-7758

svn path=/trunk/; revision=61686

9 years ago[NTOS]
Thomas Faber [Sun, 19 Jan 2014 09:11:50 +0000 (09:11 +0000)]
[NTOS]
- Add missing newline in DPRINT

svn path=/trunk/; revision=61685

9 years ago[taskmgr]
Christoph von Wittich [Sun, 19 Jan 2014 08:52:21 +0000 (08:52 +0000)]
[taskmgr]
formatting fixes

svn path=/trunk/; revision=61684

9 years ago[winver]
Christoph von Wittich [Sun, 19 Jan 2014 08:30:17 +0000 (08:30 +0000)]
[winver]
convert to unicode

svn path=/trunk/; revision=61683

9 years ago[msconfig]
Christoph von Wittich [Sun, 19 Jan 2014 08:20:45 +0000 (08:20 +0000)]
[msconfig]
strsafe++

svn path=/trunk/; revision=61682

9 years ago[MSGINA]
Eric Kohl [Sun, 19 Jan 2014 01:33:19 +0000 (01:33 +0000)]
[MSGINA]
- Display the lock message on the lock and unlock dialogs.
- Implement the DontDisplayLastUserName and ShutdownWithoutLogon options.
- Read the DefaultUserName and DefaultDomain and display the user name on the logon dialog unless the DontDisplayLastUserName option is enabled.

svn path=/trunk/; revision=61681

9 years ago[HIDPARSER]
Thomas Faber [Sat, 18 Jan 2014 19:18:33 +0000 (19:18 +0000)]
[HIDPARSER]
- Use the full bit range of input items instead of discarding high bits
CORE-7772 #resolve

svn path=/trunk/; revision=61680

9 years ago[SYSSETUP]
Eric Kohl [Sat, 18 Jan 2014 18:28:01 +0000 (18:28 +0000)]
[SYSSETUP]
Set the commputer name and account domain name in unattended setup.

svn path=/trunk/; revision=61679

9 years ago[SYSSETUP]
Eric Kohl [Sat, 18 Jan 2014 16:54:34 +0000 (16:54 +0000)]
[SYSSETUP]
Fix unattended install and disable some debug output.

svn path=/trunk/; revision=61678

9 years ago[DXDIAG]
Daniel Reimer [Sat, 18 Jan 2014 15:47:09 +0000 (15:47 +0000)]
[DXDIAG]
Improve english resource file by Lee Schroeder
Added that change to all other languages, too. (Where still applicable)
CORE-7479 #resolve

svn path=/trunk/; revision=61677

9 years ago[SYSSETUP]
Eric Kohl [Sat, 18 Jan 2014 14:26:07 +0000 (14:26 +0000)]
[SYSSETUP]
Use the administrator name, domain and password for the logon hack and store them in the registry for later use by winlogon if the AutoAdminLogon option is enabled.
CORE-7722 #resolve

svn path=/trunk/; revision=61676