reactos.git
9 years ago[CMD]: Fix the ConWrite newline support I added in r59411 (strpbrk only applies on...
Hermès Bélusca-Maïto [Fri, 3 Apr 2015 00:11:42 +0000 (00:11 +0000)]
[CMD]: Fix the ConWrite newline support I added in r59411 (strpbrk only applies on NULL-terminated strings, whereas here I manipulate char-counted strings). Spotted by Thomas. As a result should fix almost all of the non-NULL-terminated strings that show up in the failed cmd wine test.

svn path=/trunk/; revision=67013

9 years ago[CMD]: When the CD command echoes the current path, it should return to a newline.
Hermès Bélusca-Maïto [Thu, 2 Apr 2015 23:47:00 +0000 (23:47 +0000)]
[CMD]: When the CD command echoes the current path, it should return to a newline.
CORE-6810

svn path=/trunk/; revision=67012

9 years ago[STOBJECT]
Christoph von Wittich [Thu, 2 Apr 2015 06:09:25 +0000 (06:09 +0000)]
[STOBJECT]
Reorder volume menu items
patch by Jared
CORE-9468

svn path=/trunk/; revision=67011

9 years ago[SHELL32]
Giannis Adamopoulos [Wed, 1 Apr 2015 20:34:52 +0000 (20:34 +0000)]
[SHELL32]
- CNetFolder: As this folder isn't really implemented yet, there is no need to call the hacky common implementation of wine's shell folders (which will be removed eventually).

svn path=/trunk/; revision=67010

9 years ago[SHELL32]
Giannis Adamopoulos [Wed, 1 Apr 2015 20:22:25 +0000 (20:22 +0000)]
[SHELL32]
- Implement IContextMenu3 interface. Implement drawing the icons on WM_DRAWITEM. CORE-8866

svn path=/trunk/; revision=67009

9 years ago[SHELL32]
Giannis Adamopoulos [Wed, 1 Apr 2015 19:18:34 +0000 (19:18 +0000)]
[SHELL32]
- Show hidden files as dithered.

svn path=/trunk/; revision=67008

9 years ago[STREAM] Plug a leak on failure path. Spotted by Samuel Serapion using cppcheck....
Amine Khaldi [Wed, 1 Apr 2015 17:53:02 +0000 (17:53 +0000)]
[STREAM] Plug a leak on failure path. Spotted by Samuel Serapion using cppcheck. CORE-8211

svn path=/trunk/; revision=67007

9 years ago[WINSRV]
Timo Kreuzer [Wed, 1 Apr 2015 17:51:05 +0000 (17:51 +0000)]
[WINSRV]
Enable C_ASSERT only on x86. Fixes x64 build.

svn path=/trunk/; revision=67006

9 years ago[DEVMGR]
Christoph von Wittich [Wed, 1 Apr 2015 12:03:12 +0000 (12:03 +0000)]
[DEVMGR]
don't show an empty list when no driver files are required
CORE-3341

svn path=/trunk/; revision=67005

9 years ago[HOST]
Timo Kreuzer [Wed, 1 Apr 2015 08:35:16 +0000 (08:35 +0000)]
[HOST]
Make sure host-tools hosts get the correct type definitions on 64 bit (native) MSVC builds. x64 builds boot to desktop now.
CORE-8587 #resolve

svn path=/trunk/; revision=67004

9 years ago[NTVDM]
Aleksandar Andrejevic [Tue, 31 Mar 2015 21:45:12 +0000 (21:45 +0000)]
[NTVDM]
INT 21h, AH = OAh - Special characters should be echoed onto
the screen (like ^A, etc...) and appended to the buffer.

svn path=/trunk/; revision=67003

9 years ago[NTVDM]
Aleksandar Andrejevic [Tue, 31 Mar 2015 21:28:40 +0000 (21:28 +0000)]
[NTVDM]
- Implement Ctrl-C using interrupt 0x23.
- Fix INT 21h, AH = 0Ah to detect special characters.
- When attaching to / detaching from the console, adjust the console mode
  and attach/detach the UI.
- Do not translate scancodes to characters while ALT is held down.

svn path=/trunk/; revision=67002

9 years ago[WSCRIPT]
Thomas Faber [Tue, 31 Mar 2015 18:30:02 +0000 (18:30 +0000)]
[WSCRIPT]
- Correctly use CommandLineToArgvW. Fixes cscript crashing on start.
CORE-9439 #resolve

svn path=/trunk/; revision=67001

9 years ago[CMD_WINETEST] Do not skip cmd tests. CORE-6810.
Amine Khaldi [Tue, 31 Mar 2015 07:09:02 +0000 (07:09 +0000)]
[CMD_WINETEST] Do not skip cmd tests. CORE-6810.

svn path=/trunk/; revision=67000

9 years ago[NTVDM]
Aleksandar Andrejevic [Tue, 31 Mar 2015 03:05:09 +0000 (03:05 +0000)]
[NTVDM]
The DOS CON driver should call INT 29h for output.

svn path=/trunk/; revision=66999

9 years ago[NTVDM]
Aleksandar Andrejevic [Tue, 31 Mar 2015 02:39:31 +0000 (02:39 +0000)]
[NTVDM]
Implement INT 21h function AH = 31h (Terminate and Stay Resident).

svn path=/trunk/; revision=66998

9 years ago[MSTSC]: Full sentences end with periods. In English (patch by Jared Smudde). Works...
Hermès Bélusca-Maïto [Tue, 31 Mar 2015 00:37:14 +0000 (00:37 +0000)]
[MSTSC]: Full sentences end with periods. In English (patch by Jared Smudde). Works also for most of other languages (french, spanish, etc...) (by me). For Chinese and Japanese, translaters, please review!

svn path=/trunk/; revision=66997

9 years ago[NOTEPAD]: AlertPrintError displays an incorrect error message, CORE-9417 .
Hermès Bélusca-Maïto [Tue, 31 Mar 2015 00:07:23 +0000 (00:07 +0000)]
[NOTEPAD]: AlertPrintError displays an incorrect error message, CORE-9417 .
Patch by Ricardo Hanke.

svn path=/trunk/; revision=66996

9 years ago[USETUP]: Add basic installation directory validity check (only for whitespace for...
Hermès Bélusca-Maïto [Mon, 30 Mar 2015 23:32:32 +0000 (23:32 +0000)]
[USETUP]: Add basic installation directory validity check (only for whitespace for now). Patch by Edijs Kolesnikovics, see CORE-6149.
Indeed, some ReactOS (and Windows as well) components do not support the system directory having spaces, in particular SMSS: this is due to the basic command-line parsing rules of SMSS that considers that the presence of a space in the command-line is equivalent to a separator, be it in or out a quoted string.

svn path=/trunk/; revision=66995

9 years ago[SHELL32] Addendum to r66987. CORE-9449
Amine Khaldi [Mon, 30 Mar 2015 23:28:15 +0000 (23:28 +0000)]
[SHELL32] Addendum to r66987. CORE-9449

svn path=/trunk/; revision=66994

9 years ago[DESKADP][DESKMON] Add icons. Brought to you by Jared Smudde. CORE-9413
Amine Khaldi [Mon, 30 Mar 2015 22:50:40 +0000 (22:50 +0000)]
[DESKADP][DESKMON] Add icons. Brought to you by Jared Smudde. CORE-9413

svn path=/trunk/; revision=66993

9 years ago[BROWSEUI]
Giannis Adamopoulos [Mon, 30 Mar 2015 22:50:34 +0000 (22:50 +0000)]
[BROWSEUI]
- CProgressDialog: Allocate big enough buffers needed for the text messages during initialization and don't reallocate them at all. Should stop thrashing the heap while copying a large number of files.
CORE-9252

svn path=/trunk/; revision=66992

9 years ago[DESK] Prevent the "More" label from spilling into other areas and adjust another...
Amine Khaldi [Mon, 30 Mar 2015 22:36:23 +0000 (22:36 +0000)]
[DESK] Prevent the "More" label from spilling into other areas and adjust another label position. By Jared Smudde. CORE-9413

svn path=/trunk/; revision=66991

9 years ago[ROSAPPS]
Timo Kreuzer [Mon, 30 Mar 2015 22:33:40 +0000 (22:33 +0000)]
[ROSAPPS]
Get kitty back to rosapps

svn path=/trunk/; revision=66990

9 years ago[CMAKE]
Timo Kreuzer [Mon, 30 Mar 2015 22:31:43 +0000 (22:31 +0000)]
[CMAKE]
Use native OS tools for concatenating files. Remove cat from host tools.

svn path=/trunk/; revision=66989

9 years ago[EXPLORER]
Giannis Adamopoulos [Mon, 30 Mar 2015 22:28:08 +0000 (22:28 +0000)]
[EXPLORER]
- Fix showing the website when Help is selected from the start menu.

svn path=/trunk/; revision=66988

9 years ago[SHELL32] Disk Check utility: Make the progress bar longer, shrink the group box...
Amine Khaldi [Mon, 30 Mar 2015 22:13:37 +0000 (22:13 +0000)]
[SHELL32] Disk Check utility: Make the progress bar longer, shrink the group box, align the checkboxes and shrink the oversize box. Brought to you by Jared Smudde. CORE-9449

svn path=/trunk/; revision=66987

9 years ago[MLANG_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Mon, 30 Mar 2015 21:45:29 +0000 (21:45 +0000)]
[MLANG_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=66986

9 years ago[MLANG] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Mon, 30 Mar 2015 21:45:18 +0000 (21:45 +0000)]
[MLANG] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=66985

9 years ago[TRANSLATIONS] Russian translation update by Kudratov Olimjon. CORE-9265
Amine Khaldi [Mon, 30 Mar 2015 21:40:50 +0000 (21:40 +0000)]
[TRANSLATIONS] Russian translation update by Kudratov Olimjon. CORE-9265

svn path=/trunk/; revision=66984

9 years ago[SETUPAPI_APITEST] Add tests for SetupDiInstallClassExA and SetupInstallServicesFromI...
Amine Khaldi [Mon, 30 Mar 2015 21:08:47 +0000 (21:08 +0000)]
[SETUPAPI_APITEST] Add tests for SetupDiInstallClassExA and SetupInstallServicesFromInfSectionEx. Brought to you by Victor Martinez with some changes by me. ROSTESTS-157

svn path=/trunk/; revision=66983

9 years ago[EXPLORER] Ukrainian translation update by Yaroslav Fedoryako. CORE-9320
Amine Khaldi [Mon, 30 Mar 2015 19:35:15 +0000 (19:35 +0000)]
[EXPLORER] Ukrainian translation update by Yaroslav Fedoryako. CORE-9320

svn path=/trunk/; revision=66982

9 years ago[IPHLPAPI]
Sylvain Petreolle [Mon, 30 Mar 2015 18:10:36 +0000 (18:10 +0000)]
[IPHLPAPI]
Make GetAdaptersAddresses work, with parameters check.
More work is needed :
-it returns the loopback, which shouldn't appear with default flags.
-the required size is fixed.

svn path=/trunk/; revision=66981

9 years ago[SHELL32]
Giannis Adamopoulos [Mon, 30 Mar 2015 13:04:48 +0000 (13:04 +0000)]
[SHELL32]
- CDefaultContextMenu: GetAttributesOf should only return the requested flags and not more. However our shell is not up to such nice behavior so don't depend o it for now.

svn path=/trunk/; revision=66980

9 years ago[SHELL32]
Giannis Adamopoulos [Mon, 30 Mar 2015 12:21:39 +0000 (12:21 +0000)]
[SHELL32]
- CDefView: Use SHForwardContextMenuMsg to forward menu messages to the context menu class
- CDefaultContextMenu: Implement IContextMenu3 and use SHForwardContextMenuMsg to forward menu messages to shell extensions.
CORE-9446 (part 2/2)

svn path=/trunk/; revision=66979

9 years ago[SHLWAPI]
Giannis Adamopoulos [Mon, 30 Mar 2015 12:16:29 +0000 (12:16 +0000)]
[SHLWAPI]
- Implement SHForwardContextMenuMsg according to http://undoc.airesoft.co.uk/shlwapi.dll/SHForwardContextMenuMsg.php
CORE-9446 (Part 1/2)

svn path=/trunk/; revision=66978

9 years ago[shlwapi_undoc.h] - Add definition of SHForwardContextMenuMsg
Giannis Adamopoulos [Mon, 30 Mar 2015 11:42:41 +0000 (11:42 +0000)]
[shlwapi_undoc.h] - Add definition of SHForwardContextMenuMsg

svn path=/trunk/; revision=66977

9 years ago[MCIWAVE] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Mon, 30 Mar 2015 11:42:30 +0000 (11:42 +0000)]
[MCIWAVE] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=66976

9 years ago[SHLWAPI]
Giannis Adamopoulos [Mon, 30 Mar 2015 10:04:26 +0000 (10:04 +0000)]
[SHLWAPI]
- Convert SHGetAllAccessSA to a soft stub in the spec file. Having it as a diff with wine doesn't add anything anyway.

svn path=/trunk/; revision=66975

9 years ago[SETUPAPI] Install .Services section optionally. Brought to you by Victor Martinez...
Amine Khaldi [Mon, 30 Mar 2015 09:34:29 +0000 (09:34 +0000)]
[SETUPAPI] Install .Services section optionally. Brought to you by Victor Martinez. CORE-9406

svn path=/trunk/; revision=66974

9 years ago[SORT] Addendum to r66972. Since we're still playing the "Guess what the real changes...
Amine Khaldi [Mon, 30 Mar 2015 09:25:59 +0000 (09:25 +0000)]
[SORT] Addendum to r66972. Since we're still playing the "Guess what the real changes are" game despite talking about it over and over, I just decided to join you guys. Fix the an IRP leak. Also tabs => spaces. More will come as long as the game does not stop. No svn history was unnecessarily changed (further) while making this commit.

svn path=/trunk/; revision=66973

9 years ago[SORT]
Hermès Bélusca-Maïto [Sun, 29 Mar 2015 22:26:24 +0000 (22:26 +0000)]
[SORT]
- Don't leak memory, see CORE-8205 for more details.
- Replace tabs with spaces.

svn path=/trunk/; revision=66972

9 years ago[PCNET]
Sylvain Petreolle [Sun, 29 Mar 2015 17:46:44 +0000 (17:46 +0000)]
[PCNET]
MiTestCard: Fix traces.
Display BCR4 value (physical link state.)

svn path=/trunk/; revision=66971

9 years ago* Back down r66964 for now.
Amine Khaldi [Sun, 29 Mar 2015 17:22:16 +0000 (17:22 +0000)]
* Back down r66964 for now.

svn path=/trunk/; revision=66970

9 years ago[I8042PRT]
Timo Kreuzer [Sun, 29 Mar 2015 17:06:40 +0000 (17:06 +0000)]
[I8042PRT]
Silence debug prints

svn path=/trunk/; revision=66969

9 years ago[NtUser]
James Tabor [Sun, 29 Mar 2015 16:25:50 +0000 (16:25 +0000)]
[NtUser]
- Fix the transfer of a global cursor while using ATI. See CORE-9436.

svn path=/trunk/; revision=66968

9 years ago- silence traces
Johannes Anderwald [Sun, 29 Mar 2015 16:08:14 +0000 (16:08 +0000)]
- silence traces

svn path=/trunk/; revision=66967

9 years ago- silence traces
Johannes Anderwald [Sun, 29 Mar 2015 16:02:40 +0000 (16:02 +0000)]
- silence traces

svn path=/trunk/; revision=66966

9 years ago[ACPI:BUS]: Fix dereferencing NULL pointers in acpi_bus_notify. By Victor Martinez...
Hermès Bélusca-Maïto [Sun, 29 Mar 2015 15:49:03 +0000 (15:49 +0000)]
[ACPI:BUS]: Fix dereferencing NULL pointers in acpi_bus_notify. By Victor Martinez with small adaptation by me.
CORE-8271

svn path=/trunk/; revision=66965

9 years ago[SETUPAPI] Adopt SetupGetInfFileListW() from Wine Staging 1.7.37. Based on the work...
Amine Khaldi [Sun, 29 Mar 2015 15:07:27 +0000 (15:07 +0000)]
[SETUPAPI] Adopt SetupGetInfFileListW() from Wine Staging 1.7.37. Based on the work of Victor Martinez with my updates. CORE-9431 CORE-9246

svn path=/trunk/; revision=66964

9 years ago[NTVDM]: Introduce the possibility to compile multiple x86-16bit ASM files by using...
Hermès Bélusca-Maïto [Sun, 29 Mar 2015 14:51:14 +0000 (14:51 +0000)]
[NTVDM]: Introduce the possibility to compile multiple x86-16bit ASM files by using the trick of concatenating them in correct order so that the resulting file is a compilable ASM file. (We cannot do linking or 16-bit objects, so we need to take a middle approach).
CORE-9442 #resolve

svn path=/trunk/; revision=66963

9 years ago[TEST.H]
Giannis Adamopoulos [Sun, 29 Mar 2015 14:51:02 +0000 (14:51 +0000)]
[TEST.H]
- Add an additional new line before showing the test results.
Some log commands print their lines in multiple print commands. As a result the results line can end up in the middle of a previous log that was not a complete line. This confuses testman and causes it to report this test as a crashed test as it can't find the line with the results. This is not the best fix possible but makes sure that the results in testman fluctuate a bit less.

svn path=/trunk/; revision=66962

9 years ago[SAMSRV] Add Italian translation. By Carlo Bramini. CORE-9438
Amine Khaldi [Sun, 29 Mar 2015 14:47:40 +0000 (14:47 +0000)]
[SAMSRV] Add Italian translation. By Carlo Bramini. CORE-9438

svn path=/trunk/; revision=66961

9 years ago[NTDLL_APITEST]
Thomas Faber [Sun, 29 Mar 2015 14:47:21 +0000 (14:47 +0000)]
[NTDLL_APITEST]
- Also test decreasing the size in RtlReAllocateHeap. Patch by Mark Jansen.
CORE-9441

svn path=/trunk/; revision=66960

9 years ago[RTL]
Thomas Faber [Sun, 29 Mar 2015 14:10:20 +0000 (14:10 +0000)]
[RTL]
- HEAP_ENTRY::Size is in bytes for HEAP_ENTRY_VIRTUAL_ALLOC allocations. Save it accordingly
CORE-9441

svn path=/trunk/; revision=66959

9 years ago[NTDLL_APITEST]
Thomas Faber [Sun, 29 Mar 2015 14:07:00 +0000 (14:07 +0000)]
[NTDLL_APITEST]
- Add a test for RtlReAllocateHeap -- shows that it doesn't handle allocations larger than 0x7f000 correctly in ROS
CORE-9441

svn path=/trunk/; revision=66958

9 years ago[CSCRIPT] Add missing user32 import lib. Fixes build.
Amine Khaldi [Sun, 29 Mar 2015 13:58:24 +0000 (13:58 +0000)]
[CSCRIPT] Add missing user32 import lib. Fixes build.

svn path=/trunk/; revision=66957

9 years ago[WSCRIPT_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Sun, 29 Mar 2015 13:54:08 +0000 (13:54 +0000)]
[WSCRIPT_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=66956

9 years ago[WSCRIPT] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Sun, 29 Mar 2015 13:53:55 +0000 (13:53 +0000)]
[WSCRIPT] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=66955

9 years ago[WSHOM_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Sun, 29 Mar 2015 13:36:03 +0000 (13:36 +0000)]
[WSHOM_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=66954

9 years ago[WSHOM.OCX] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Sun, 29 Mar 2015 13:35:37 +0000 (13:35 +0000)]
[WSHOM.OCX] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=66953

9 years ago[CMAKE/BOOTDATA]
Timo Kreuzer [Sun, 29 Mar 2015 11:38:05 +0000 (11:38 +0000)]
[CMAKE/BOOTDATA]
Implement support for decentralized registry inf files.
This is done with the new add_registry_inf() cmake function, which takes one or more inf files, which are then converted to UTF-16 and merged into a single registry.inf, which is then used to create the livecd hives and imported by usetup. Move the registry entries for some drivers out of hivesys.inf into separate files next to the driver.

svn path=/trunk/; revision=66952

9 years ago[USETUP]
Timo Kreuzer [Sun, 29 Mar 2015 11:29:02 +0000 (11:29 +0000)]
[USETUP]
Upgrade a few DPRINT to DPRINT1 for failure cases.

svn path=/trunk/; revision=66951

9 years ago[NTOS:MM]
Thomas Faber [Sun, 29 Mar 2015 10:02:47 +0000 (10:02 +0000)]
[NTOS:MM]
- Do not track failed pool allocations as successful
CORE-9440 #resolve

svn path=/trunk/; revision=66950

9 years ago[WSCRIPT]
Thomas Faber [Sun, 29 Mar 2015 07:48:38 +0000 (07:48 +0000)]
[WSCRIPT]
- Mark as GUI app
CORE-9439

svn path=/trunk/; revision=66949

9 years ago[NTOSKRNL]
Thomas Faber [Sun, 29 Mar 2015 06:04:19 +0000 (06:04 +0000)]
[NTOSKRNL]
- More pool tagging!

svn path=/trunk/; revision=66948

9 years ago[BIN2C][CAT]: Use stderr for printing errors (to not mix them up with normal output...
Hermès Bélusca-Maïto [Sun, 29 Mar 2015 02:00:15 +0000 (02:00 +0000)]
[BIN2C][CAT]: Use stderr for printing errors (to not mix them up with normal output that should go to stdout. This is especially needed for cat).

svn path=/trunk/; revision=66947

9 years ago[CMAKE]
Hermès Bélusca-Maïto [Sun, 29 Mar 2015 01:53:10 +0000 (01:53 +0000)]
[CMAKE]
Improve the concatenate_files macro introduced by Timo in r52179 + r52182 and hackfixed in r53914 . Notice that now it can take an arbitrary number of files to be concatenated. Hence you need to specify first the output file, and all the rest is the different files.

[FREELDR]
Use the improved concatenate_files macro.

svn path=/trunk/; revision=66946

9 years ago[CAT]
Hermès Bélusca-Maïto [Sun, 29 Mar 2015 00:52:49 +0000 (00:52 +0000)]
[CAT]
- stricmp doesn't exist in *nix, use strcasecmp instead.
- setmode (for setting IO streams mode -- text, binary --) is useless in *nix world, so just define it as a dummy function.
Should fix build.

svn path=/trunk/; revision=66945

9 years ago[SHELL32]
Giannis Adamopoulos [Sun, 29 Mar 2015 00:37:39 +0000 (00:37 +0000)]
[SHELL32]
- Load the shell extensions of the * class only for files.
CORE-6806

svn path=/trunk/; revision=66944

9 years ago[CAT]: io.h appears to be useless, and seems to not be part of all C setups.
Hermès Bélusca-Maïto [Sun, 29 Mar 2015 00:16:53 +0000 (00:16 +0000)]
[CAT]: io.h appears to be useless, and seems to not be part of all C setups.

svn path=/trunk/; revision=66943

9 years ago[ROSAPPS][HOST-TOOLS]:
Hermès Bélusca-Maïto [Sun, 29 Mar 2015 00:13:25 +0000 (00:13 +0000)]
[ROSAPPS][HOST-TOOLS]:
- Take the best of the two CAT rosapps and turn them into a host-tool. Will be used later on in the build process.
- Few comment cleaning in bin2c tool.

svn path=/trunk/; revision=66942

9 years agoForgot this file.
David Quintana [Sat, 28 Mar 2015 23:37:36 +0000 (23:37 +0000)]
Forgot this file.

svn path=/trunk/; revision=66941

9 years ago[SHELL32]
David Quintana [Sat, 28 Mar 2015 23:27:10 +0000 (23:27 +0000)]
[SHELL32]
* Implement CLSID_QueryAssociations class. Patch by Ivan Rodionov, with some unrotting by me.
CORE-8188 #resolve

svn path=/trunk/; revision=66940

9 years ago[REACTOS.DFF]
Sylvain Petreolle [Sat, 28 Mar 2015 21:36:37 +0000 (21:36 +0000)]
[REACTOS.DFF]
Show the cornich^W user what to NOT do before losing hair, hours, and hope into mankind.

svn path=/trunk/; revision=66939

9 years ago[PSDK]
Giannis Adamopoulos [Sat, 28 Mar 2015 21:11:42 +0000 (21:11 +0000)]
[PSDK]
- Make IsEqualGUID typesafe for c++

[SHELL32]
- Properly call IsEqualIID in _ILIsControlPanel. Should fix CORE-8891.

svn path=/trunk/; revision=66938

9 years ago[TCPIP]
Thomas Faber [Sat, 28 Mar 2015 20:49:13 +0000 (20:49 +0000)]
[TCPIP]
- Free transport context in TiCloseFileObject
CORE-9437 #resolve

svn path=/trunk/; revision=66937

9 years ago[SHELL32]
Giannis Adamopoulos [Sat, 28 Mar 2015 19:45:27 +0000 (19:45 +0000)]
[SHELL32]
- CDefaultContextMenu: Reduce relying on the type of the pidl. Query the attributes of the item from the folder instead.
CORE-8973

svn path=/trunk/; revision=66936

9 years ago[SHELL32]
Giannis Adamopoulos [Sat, 28 Mar 2015 19:42:08 +0000 (19:42 +0000)]
[SHELL32]
- Fix CControlPanelFolder to report its attributes.

svn path=/trunk/; revision=66935

9 years ago[MCISEQ] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Sat, 28 Mar 2015 19:12:22 +0000 (19:12 +0000)]
[MCISEQ] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=66934

9 years ago[NtUser]
James Tabor [Sat, 28 Mar 2015 17:37:44 +0000 (17:37 +0000)]
[NtUser]
- Patch by Fedor Zaytsev : Fixes edit cursor, remained painted after it was removed, see CORE-2131.

svn path=/trunk/; revision=66933

9 years ago[FASTFAT]
Thomas Faber [Sat, 28 Mar 2015 17:14:14 +0000 (17:14 +0000)]
[FASTFAT]
- Assert that clusters supposedly belonging to a file are not in fact marked as free
CORE-9433

svn path=/trunk/; revision=66932

9 years ago[FASTFAT]
Thomas Faber [Sat, 28 Mar 2015 16:58:53 +0000 (16:58 +0000)]
[FASTFAT]
- Do not delete files that have open handles
- Delete on cleanup instead of close, and do not depend on FileObject->DeletePending (since the last file object is not necessarily the one that caused the delete)
CORE-9433

svn path=/trunk/; revision=66931

9 years ago[MSHTML_WINETEST] Skip LCIDToLocaleName related tests.
Amine Khaldi [Sat, 28 Mar 2015 16:52:19 +0000 (16:52 +0000)]
[MSHTML_WINETEST] Skip LCIDToLocaleName related tests.

svn path=/trunk/; revision=66930

9 years ago[MSHTML_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Sat, 28 Mar 2015 15:53:45 +0000 (15:53 +0000)]
[MSHTML_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=66929

9 years ago[MSHTML] Sync with Wine Staging 1.7.37. CORE-9246
Amine Khaldi [Sat, 28 Mar 2015 15:51:47 +0000 (15:51 +0000)]
[MSHTML] Sync with Wine Staging 1.7.37. CORE-9246
[BOOTDATA][APPWIZ][GECKO] Update to version 2.34.

svn path=/trunk/; revision=66928

9 years ago[PSDK] Update tom.idl. CORE-9246
Amine Khaldi [Sat, 28 Mar 2015 15:30:42 +0000 (15:30 +0000)]
[PSDK] Update tom.idl. CORE-9246

svn path=/trunk/; revision=66927

9 years ago[WIN32K] Enable PCH again.
Amine Khaldi [Sat, 28 Mar 2015 14:58:42 +0000 (14:58 +0000)]
[WIN32K] Enable PCH again.

svn path=/trunk/; revision=66926

9 years ago[FAST486]
Aleksandar Andrejevic [Sat, 28 Mar 2015 02:52:04 +0000 (02:52 +0000)]
[FAST486]
Generate a #DE if the division result can't fit in the destination register.

svn path=/trunk/; revision=66925

9 years ago[RAPPS]
Sylvain Petreolle [Fri, 27 Mar 2015 22:04:56 +0000 (22:04 +0000)]
[RAPPS]
Update NirLauncher location to 1.19.26.
Add French translation.

svn path=/trunk/; revision=66924

9 years ago[CDFS]
Thomas Faber [Fri, 27 Mar 2015 18:09:51 +0000 (18:09 +0000)]
[CDFS]
- Simplify string handling, add a few asserts

svn path=/trunk/; revision=66923

9 years ago[CDFS][MSFS][PCI]
Thomas Faber [Fri, 27 Mar 2015 18:03:39 +0000 (18:03 +0000)]
[CDFS][MSFS][PCI]
- Use sensible pool tags

svn path=/trunk/; revision=66922

9 years ago[INF]
Johannes Anderwald [Fri, 27 Mar 2015 17:30:05 +0000 (17:30 +0000)]
[INF]
- properly install kmixer
- disable audio category filter  until audio stack is ready

svn path=/trunk/; revision=66921

9 years ago[ACPI]
Thomas Faber [Fri, 27 Mar 2015 17:20:03 +0000 (17:20 +0000)]
[ACPI]
- Use more sensible pool tags
[NULL]
- Use pool tagging

svn path=/trunk/; revision=66920

9 years ago[VMWINST]
Thomas Faber [Fri, 27 Mar 2015 15:44:32 +0000 (15:44 +0000)]
[VMWINST]
- Fix build

svn path=/trunk/; revision=66919

9 years ago[INF]
Christoph von Wittich [Fri, 27 Mar 2015 15:43:19 +0000 (15:43 +0000)]
[INF]
add a dummy inf file for wmiacpi driver

svn path=/trunk/; revision=66918

9 years ago[PSDK]
Thomas Faber [Fri, 27 Mar 2015 15:30:22 +0000 (15:30 +0000)]
[PSDK]
- Add InstallHinfSection definitions

svn path=/trunk/; revision=66917

9 years ago[PSDK]
Thomas Faber [Fri, 27 Mar 2015 14:29:43 +0000 (14:29 +0000)]
[PSDK]
- Add NotifyServiceStatusChange definitions

svn path=/trunk/; revision=66916

9 years ago[KERNEL32]
Thomas Faber [Fri, 27 Mar 2015 13:29:59 +0000 (13:29 +0000)]
[KERNEL32]
- Addendum to r66912 and Romanian translation update by Ștefan Fulea
CORE-9429 #resolve

svn path=/trunk/; revision=66915

9 years ago[SYSSETUP]
Thomas Faber [Fri, 27 Mar 2015 11:44:59 +0000 (11:44 +0000)]
[SYSSETUP]
- Move the hotkey loop to its own thread to make it work when modal dialogs are open, and also during device installation
CORE-9428

svn path=/trunk/; revision=66914