reactos.git
10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

10 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

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

svn path=/trunk/; revision=61682

10 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

10 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

10 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

10 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

10 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

10 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

10 years ago[RAPPS]
Thomas Faber [Sat, 18 Jan 2014 14:11:19 +0000 (14:11 +0000)]
[RAPPS]
- Allow double-clicking to install programs. Based on patch by Edijs Kolesnikovičs and Yuntian Zhang.
CORE-4357 #resolve #comment Thanks guys, this was a major annoyance.

svn path=/trunk/; revision=61675

10 years agoXX.XXMB -> XX.XX MB
Daniel Reimer [Sat, 18 Jan 2014 13:31:27 +0000 (13:31 +0000)]
XX.XXMB -> XX.XX MB
Rename some files to make the naming style identical.
Update to recent versions to test these for next release.

svn path=/trunk/; revision=61674

10 years ago[RAPPS]
Thomas Faber [Sat, 18 Jan 2014 13:26:47 +0000 (13:26 +0000)]
[RAPPS]
- Implement search feature. Based on patch by David Quintana.
CORE-7268 #resolve
CORE-7786 #comment rapps contains a hack to load StrStrIW using GetProcAddress. That should be removed once this issue is fixed.

svn path=/trunk/; revision=61673

10 years ago[RAPPS]
Thomas Faber [Sat, 18 Jan 2014 13:07:59 +0000 (13:07 +0000)]
[RAPPS]
- Store settings in HKEY_CURRENT_USER
- Correctly show the main window if UpdateAtStart is enabled
- Improve error handling

svn path=/trunk/; revision=61672

10 years ago[RAPPS]
Thomas Faber [Sat, 18 Jan 2014 12:35:18 +0000 (12:35 +0000)]
[RAPPS]
- Use strsafe functions. Welcome to the 21st century...

svn path=/trunk/; revision=61671

10 years ago[LOG2LINES]
Daniel Reimer [Sat, 18 Jan 2014 12:03:34 +0000 (12:03 +0000)]
[LOG2LINES]
Improve Log2lines.exe help usage by Victor Martinez Calvo
CORE-7427 #resolve

svn path=/trunk/; revision=61670

10 years ago[RAPPS]
Thomas Faber [Sat, 18 Jan 2014 11:21:48 +0000 (11:21 +0000)]
[RAPPS]
- Do not write to the application directory. Welcome to Windows NT...

svn path=/trunk/; revision=61669

10 years ago[RAPPS]
Thomas Faber [Sat, 18 Jan 2014 10:45:39 +0000 (10:45 +0000)]
[RAPPS]
- Don't break the build, Arch

svn path=/trunk/; revision=61668

10 years ago[RAPPS]
Thomas Faber [Sat, 18 Jan 2014 10:44:27 +0000 (10:44 +0000)]
[RAPPS]
- Do not require Administrator privileges. It's annoying and completely unnecessary

svn path=/trunk/; revision=61667

10 years ago[ACPI]
Timo Kreuzer [Sat, 18 Jan 2014 00:50:10 +0000 (00:50 +0000)]
[ACPI]
- Fix AcpiRegQueryValue, to allow querying the required buffer size only (which was already used, but just didn't work)
- Fix GetProcessorInformation. Previously the function failed at the start, but no one checked the return value. Check return values of called functions, and properly NULL-Terminate the components of the REG_MULTI_SZ style value that  ProcessorHardwareIds is supposed to be.
- Fix NULL-termination in Bus_PDO_QueryDeviceId as well as clean up the code, fix indentation and broken if/else cases
- Add some ASSERTs and comments

svn path=/trunk/; revision=61666

10 years ago[FRAMEBUF]
Timo Kreuzer [Sat, 18 Jan 2014 00:40:22 +0000 (00:40 +0000)]
[FRAMEBUF]
Fix MSVC warnings

svn path=/trunk/; revision=61665

10 years ago[DXAPI]
Timo Kreuzer [Sat, 18 Jan 2014 00:39:29 +0000 (00:39 +0000)]
[DXAPI]
Remove unnecessary forwards in spec file

svn path=/trunk/; revision=61664

10 years ago[NTOSKRNL]
Timo Kreuzer [Fri, 17 Jan 2014 23:13:38 +0000 (23:13 +0000)]
[NTOSKRNL]
Slightly improve SeCaptureSidAndAttributesArray

svn path=/trunk/; revision=61663