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

10 years ago[MSGINA]
Eric Kohl [Sat, 25 Jan 2014 15:56:09 +0000 (15:56 +0000)]
[MSGINA]
- Enable the "Change Password" button of the security dialog.
- Initialize the "Change Password" dialog.

svn path=/trunk/; revision=61808

10 years ago[SECUR32]
Amine Khaldi [Sat, 25 Jan 2014 15:49:57 +0000 (15:49 +0000)]
[SECUR32]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61807

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

svn path=/trunk/; revision=61806

10 years ago[CRYPTLIB]
Timo Kreuzer [Sat, 25 Jan 2014 13:55:08 +0000 (13:55 +0000)]
[CRYPTLIB]
Add a library for common encryption/hashing algorithms. Currently implements MD4, MD5, SHA1, RC4 (all taken from advapi32 with minor modifications) and AES (taken from OpenWrt Linux).
The library is currently used by advapi32 only, but ksecdd will make use of it later as well.

svn path=/trunk/; revision=61805

10 years ago[SAMSRV]
Amine Khaldi [Sat, 25 Jan 2014 13:16:43 +0000 (13:16 +0000)]
[SAMSRV]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61804

10 years ago[SAMLIB]
Amine Khaldi [Sat, 25 Jan 2014 12:55:52 +0000 (12:55 +0000)]
[SAMLIB]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61803

10 years ago[RASADHLP]
Amine Khaldi [Sat, 25 Jan 2014 12:35:30 +0000 (12:35 +0000)]
[RASADHLP]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61802

10 years ago[OLEAUT32]
Amine Khaldi [Sat, 25 Jan 2014 11:59:58 +0000 (11:59 +0000)]
[OLEAUT32]
* Move some inclusions to the main header.
CORE-7716

svn path=/trunk/; revision=61801

10 years ago[NEWDEV]
Amine Khaldi [Sat, 25 Jan 2014 11:32:30 +0000 (11:32 +0000)]
[NEWDEV]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61800

10 years ago[NETSHELL]
Amine Khaldi [Sat, 25 Jan 2014 10:59:27 +0000 (10:59 +0000)]
[NETSHELL]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61799

10 years ago[NETCFGX]
Amine Khaldi [Sat, 25 Jan 2014 10:45:26 +0000 (10:45 +0000)]
[NETCFGX]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61798

10 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

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[NETAPI32]
Amine Khaldi [Fri, 24 Jan 2014 20:24:47 +0000 (20:24 +0000)]
[NETAPI32]
* Remove one time inclusions from the main header and put them back where they belong.
* Move some inclusions to the main header.
CORE-7716

svn path=/trunk/; revision=61793

10 years ago[MSXML3]
Amine Khaldi [Fri, 24 Jan 2014 20:15:05 +0000 (20:15 +0000)]
[MSXML3]
* Move some inclusions to the main header.
CORE-7716

svn path=/trunk/; revision=61792

10 years ago[MSWSOCK]
Amine Khaldi [Fri, 24 Jan 2014 18:18:39 +0000 (18:18 +0000)]
[MSWSOCK]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61791

10 years ago[MSVFW32]
Amine Khaldi [Fri, 24 Jan 2014 18:03:28 +0000 (18:03 +0000)]
[MSVFW32]
* 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.
* Remove inclusions and definitions that already exist in the main header/resource file.
CORE-7716

svn path=/trunk/; revision=61790

10 years ago[MSPORTS]
Amine Khaldi [Fri, 24 Jan 2014 18:00:48 +0000 (18:00 +0000)]
[MSPORTS]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61789

10 years ago[MSIMTF]
Amine Khaldi [Fri, 24 Jan 2014 17:59:28 +0000 (17:59 +0000)]
[MSIMTF]
* Create a main header and move some inclusions to it.
* Improve the header inclusions.
CORE-7716

svn path=/trunk/; revision=61788

10 years ago[MSCTF]
Amine Khaldi [Fri, 24 Jan 2014 17:37:14 +0000 (17:37 +0000)]
[MSCTF]
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61787

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 ago[MSGINA]
Eric Kohl [Thu, 23 Jan 2014 22:05:03 +0000 (22:05 +0000)]
[MSGINA]
- Add the ability for administrators to unlock a computer that was locked by another user.
- Remove outdated code.

svn path=/trunk/; revision=61784

10 years ago[CMLIB]
Jérôme Gardou [Thu, 23 Jan 2014 21:06:48 +0000 (21:06 +0000)]
[CMLIB]
 - Increase Hive dirty counter when marking cells as dirty
 - Clear the counter accordingly when flushing the hive
[NTOSKRNL]
 - Lazy flush the registry when unlocking it
 - Correctly update hive lazy flush count when actully flushing it
 - Respect the force flush parameter
CORE-6762 #comment Should be fixed with r61783, let's see what testbot says.

svn path=/trunk/; revision=61783

10 years ago[MSCOREE]
Amine Khaldi [Thu, 23 Jan 2014 18:01:59 +0000 (18:01 +0000)]
[MSCOREE]
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61782

10 years ago[MSAFD]
Amine Khaldi [Thu, 23 Jan 2014 18:01:03 +0000 (18:01 +0000)]
[MSAFD]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61781

10 years ago[MSACM32]
Amine Khaldi [Thu, 23 Jan 2014 17:59:52 +0000 (17:59 +0000)]
[MSACM32]
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61780

10 years ago[MPR]
Amine Khaldi [Thu, 23 Jan 2014 17:57:47 +0000 (17:57 +0000)]
[MPR]
* Move mprres.h inclusion to the main header.
CORE-7716

svn path=/trunk/; revision=61779

10 years ago[MMDEVAPI]
Amine Khaldi [Thu, 23 Jan 2014 17:55:56 +0000 (17:55 +0000)]
[MMDEVAPI]
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61778

10 years ago[MCIAVI32]
Amine Khaldi [Thu, 23 Jan 2014 17:53:38 +0000 (17:53 +0000)]
[MCIAVI32]
* Remove one time mciavi.h inclusion from the main header and put it back where it belongs.
CORE-7716

svn path=/trunk/; revision=61777

10 years ago[MAPI32]
Amine Khaldi [Thu, 23 Jan 2014 17:52:54 +0000 (17:52 +0000)]
[MAPI32]
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61776

10 years ago[LSASRV]
Amine Khaldi [Thu, 23 Jan 2014 17:51:20 +0000 (17:51 +0000)]
[LSASRV]
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61775

10 years ago[LPK]
Amine Khaldi [Thu, 23 Jan 2014 17:49:49 +0000 (17:49 +0000)]
[LPK]
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61774

10 years ago[LOCALSPL]
Amine Khaldi [Thu, 23 Jan 2014 17:46:55 +0000 (17:46 +0000)]
[LOCALSPL]
* Remove one time resource.h inclusion from the main header and put it back where it belongs.
CORE-7716

svn path=/trunk/; revision=61773

10 years ago[KERNEL32]
Amine Khaldi [Thu, 23 Jan 2014 17:45:58 +0000 (17:45 +0000)]
[KERNEL32]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61772

10 years ago[JSCRIPT]
Amine Khaldi [Thu, 23 Jan 2014 17:45:05 +0000 (17:45 +0000)]
[JSCRIPT]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
* Improve the GUIDs situation.
CORE-7716

svn path=/trunk/; revision=61771

10 years ago[ITSS]
Amine Khaldi [Thu, 23 Jan 2014 17:43:25 +0000 (17:43 +0000)]
[ITSS]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61770

10 years ago[IMAGEHLP]
Amine Khaldi [Thu, 23 Jan 2014 17:42:15 +0000 (17:42 +0000)]
[IMAGEHLP]
* Remove one time winternl.h inclusion from the main header and put it back where it belongs.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61769

10 years ago[IEFRAME]
Amine Khaldi [Thu, 23 Jan 2014 11:30:37 +0000 (11:30 +0000)]
[IEFRAME]
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61768

10 years ago[HID]
Amine Khaldi [Thu, 23 Jan 2014 11:28:58 +0000 (11:28 +0000)]
[HID]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61767

10 years ago[HHCTRL.OCX]
Amine Khaldi [Thu, 23 Jan 2014 11:27:43 +0000 (11:27 +0000)]
[HHCTRL.OCX]
* Remove one time mshtmhst.h inclusion from the main header and put it back where it belongs.
* Move resource.h inclusion to the main header.
* Remove redundant winnls.h inclusion.
CORE-7716

svn path=/trunk/; revision=61766

10 years ago[GDIPLUS]
Amine Khaldi [Thu, 23 Jan 2014 11:25:09 +0000 (11:25 +0000)]
[GDIPLUS]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
* Improve the GUIDs situation.
CORE-7716

svn path=/trunk/; revision=61765

10 years ago[FUSION]
Amine Khaldi [Thu, 23 Jan 2014 11:22:13 +0000 (11:22 +0000)]
[FUSION]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
* Improve the GUIDs situation.
CORE-7716

svn path=/trunk/; revision=61764

10 years ago[FMIFS]
Amine Khaldi [Thu, 23 Jan 2014 11:19:27 +0000 (11:19 +0000)]
[FMIFS]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61763

10 years ago[DNSAPI]
Amine Khaldi [Thu, 23 Jan 2014 11:16:46 +0000 (11:16 +0000)]
[DNSAPI]
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61762

10 years ago[DHCPCSVC]
Amine Khaldi [Thu, 23 Jan 2014 11:15:11 +0000 (11:15 +0000)]
[DHCPCSVC]
* 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=61761

10 years ago[DEVMGR]
Amine Khaldi [Thu, 23 Jan 2014 11:13:16 +0000 (11:13 +0000)]
[DEVMGR]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61760

10 years ago[KSECDD]
Timo Kreuzer [Wed, 22 Jan 2014 23:41:04 +0000 (23:41 +0000)]
[KSECDD]
Implement IRP_MJ_DEVICE_CONTROL, handle ioctl 0x390004, used by MS advapi32 to generate random numbers. Even though it is not very crypto-safe, for now we just use RtlRandomEx, "improved" by xoring the seed with some data from KeTickCount (no idea whether that does any good)

svn path=/trunk/; revision=61759

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[BASEADDRESSES]
Amine Khaldi [Wed, 22 Jan 2014 22:51:13 +0000 (22:51 +0000)]
[BASEADDRESSES]
* Update modules' based addresses.

svn path=/trunk/; revision=61757

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