reactos.git
10 years ago[DINPUT8]
Amine Khaldi [Sun, 6 Oct 2013 16:34:03 +0000 (16:34 +0000)]
[DINPUT8]
* Speedup build.

svn path=/trunk/; revision=60564

10 years ago[BOOTDATA]
Hermès Bélusca-Maïto [Sun, 6 Oct 2013 16:01:01 +0000 (16:01 +0000)]
[BOOTDATA]
- Add some descriptions.
- Add HKLM\Software\Microsoft\Windows NT\CurrentVersion\IniFileMapping needed for win2k3 basesrv (otherwise it fails to initialize) (and ours when the INI File Mappings functionality will be fully implemented). INI File Mappings allows redirections from e.g. system.ini --> Adequate Registry Key, when you use APIs such that WritePrivateProfileString to write settings in those INI files (for 16-bit compat).

svn path=/trunk/; revision=60563

10 years ago[CSRSRV]: In CsrCaptureArguments, be sure that the number of captured pointers is...
Hermès Bélusca-Maïto [Sun, 6 Oct 2013 14:20:18 +0000 (14:20 +0000)]
[CSRSRV]: In CsrCaptureArguments, be sure that the number of captured pointers is at most equal to MAXUSHORT (and not the total length of the captured buffer).

svn path=/trunk/; revision=60561

10 years ago[CSR]
Hermès Bélusca-Maïto [Sun, 6 Oct 2013 13:33:17 +0000 (13:33 +0000)]
[CSR]
During my investigations for making working Win2k3 csrsrv.dll (or other CSR servers) into ROS (to compare our behaviour with our own csrsrv.dll and Win2k3 one), I hit a problem: if I test a checked-build version of csrsrv (or other CSR servers), everything was fine when they were loaded, but if I use a release-build version (i.e. without any debug information), I systematically hit a memory access violation which was traced back to the moment when a CSR server's CsrInitialization entry point was called.
So I did the experiment, where I used our (debug-build) csrsrv with a free-build win2k3 CSR server dll (it was winsrv.dll, and I retested with basesrv.dll after). I hit the access violation. But if I took a debug-build version of winsrv.dll, everything was OK.
I then added in our csrsrv' server.c file the following line (around line 212 of the current file version):
DPRINT1("%s ; ServerDll->ValidTable = 0x%p ; ServerDll->NameTable = 0x%p ; ServerDll->SizeOfProcessData = %d ; ServerDll->ConnectCallback = 0x%p\n", DllString, ServerDll->ValidTable, ServerDll->NameTable, ServerDll->SizeOfProcessData, ServerDll->ConnectCallback);
and I saw that, when using a debug-build win2k3 CSR server, everything was fine (in particular the ServerDll->SizeOfProcessData member contained a reasonable value, e.g. a size of 88 bytes), whereas if I used a free-build version, I got an off-by-one problem, with the ServerDll->ValidTable pointer valid but the ServerDll->NameTable member being equal to 88 (i.e. invalid pointer) and the ServerDll->SizeOfProcessData member being equal to a very large value, which looked like a pointer value.
After more investigations, I saw that in debug-build CSR servers the list of API names were stored, whereas it was not the case in free-build versions. Therefore I concluded that the API names table was included *ONLY* in debug builds and not in release builds.

Hence, to be able to test in ROS either debug-builds or release-builds versions of Windows CSR servers in ROS (and vice-versa), I introduced a #define called CSR_DBG, which is defined only if the DBG macro is != 0, and which is not defined otherwise. When the CSR_DBG flag is defined, API names tables are added in CSR servers and otherwise, they are not.

Therefore, we are now able to test debug-build Windows CSR servers in ROS (the default possibility) or free-build versions of these CSR servers (but first, we have to build the other ones without the CSR_DBG flag, to avoid the off-by-one problem described above).

svn path=/trunk/; revision=60560

10 years ago[SETUPAPI]
Sylvain Petreolle [Sun, 6 Oct 2013 12:56:48 +0000 (12:56 +0000)]
[SETUPAPI]
Add stubs for SetupVerifyInfFile, called by VMWare tools installer.

svn path=/trunk/; revision=60559

10 years ago[SETUPAPI]
Sylvain Petreolle [Sun, 6 Oct 2013 12:56:01 +0000 (12:56 +0000)]
[SETUPAPI]
Add _SP_INF_SIGNER_INFO and _SP_ALTPLATFORM_INFO defines.

svn path=/trunk/; revision=60558

10 years ago[POWERCFG.CPL]
Thomas Faber [Sun, 6 Oct 2013 10:31:02 +0000 (10:31 +0000)]
[POWERCFG.CPL]
- Use Yes/No instead of Ok/Cancel for "Are you sure you want to delete the power scheme?" Patch by Lee Schroeder.
- Remove some unnecessary casts
CORE-7503 #resolve

svn path=/trunk/; revision=60557

10 years ago[CSRSRV]: Fix long-time SMSS port name typo (it is SbApiPort).
Hermès Bélusca-Maïto [Sun, 6 Oct 2013 00:30:29 +0000 (00:30 +0000)]
[CSRSRV]: Fix long-time SMSS port name typo (it is SbApiPort).

svn path=/trunk/; revision=60556

10 years ago[CSRSRV]: Less PPORT_MESSAGE casts.
Hermès Bélusca-Maïto [Sun, 6 Oct 2013 00:04:18 +0000 (00:04 +0000)]
[CSRSRV]: Less PPORT_MESSAGE casts.

svn path=/trunk/; revision=60555

10 years ago[CSRSRV]: Add the 0x prefix when we display some hex output.
Hermès Bélusca-Maïto [Sat, 5 Oct 2013 23:56:12 +0000 (23:56 +0000)]
[CSRSRV]: Add the 0x prefix when we display some hex output.

svn path=/trunk/; revision=60554

10 years ago[CSRSRV][CONSRV]
Hermès Bélusca-Maïto [Sat, 5 Oct 2013 23:34:25 +0000 (23:34 +0000)]
[CSRSRV][CONSRV]
CSR_WAIT_FUNCTION functions are callbacks and therefore are __stdcall aka. NTAPI. Fix this.
Now, using either our csrsrv or win2k3' csrsrv works without problems; there is no console key-press problems anymore (aka. stack corruption when calling multiple times CsrNotifyWait, which called those CSR_WAIT_FUNCTION functions).

svn path=/trunk/; revision=60553

10 years ago[GDI32_WINETEST]
Sylvain Petreolle [Sat, 5 Oct 2013 22:20:32 +0000 (22:20 +0000)]
[GDI32_WINETEST]
[USER32_WINETEST]
Use Jira bug ids.

svn path=/trunk/; revision=60552

10 years ago[CSRSRV][CONSRV]
Hermès Bélusca-Maïto [Sat, 5 Oct 2013 22:17:34 +0000 (22:17 +0000)]
[CSRSRV][CONSRV]
- Fix the second parameter WaitType (aka. NotifyAll) of CsrNotifyWait. Indeed, we used before the constants WaitAll == 0 / WaitAny == 1 (see the WAIT_TYPE enum); however, it appeared that Win2k3's CsrNotifyWait wanted a WaitType parameter == 1 when waiting for all the waits in a given wait-list. Therefore we would have to use WaitAll for waiting for any of the wait blocks, and WaitAny for waiting for all the wait blocks... looks illogical. Therefore I use instead a BOOLEAN variable (that I call NotifyAll) which is TRUE when I want to wait for all the wait blocks, and FALSE otherwise (as done e.g. for the WaitForMultipleObjects API).
- Fix its usage in CONSRV.

Magically fix key presses problems in console, when using Win2k3 csrsrv.dll ...

svn path=/trunk/; revision=60551

10 years ago[RPCSS]
Amine Khaldi [Sat, 5 Oct 2013 21:05:04 +0000 (21:05 +0000)]
[RPCSS]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60550

10 years ago[WINE]
Amine Khaldi [Sat, 5 Oct 2013 21:00:36 +0000 (21:00 +0000)]
[WINE]
* Mark localspl as in sync.
* Hide evidence re. the existence of my time machine.
CORE-7469

svn path=/trunk/; revision=60549

10 years ago[STRMBASE]
Amine Khaldi [Sat, 5 Oct 2013 20:55:09 +0000 (20:55 +0000)]
[STRMBASE]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60548

10 years ago[MSVCRTD_WINETEST]
Amine Khaldi [Sat, 5 Oct 2013 20:50:11 +0000 (20:50 +0000)]
[MSVCRTD_WINETEST]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60547

10 years ago[COMDLG32_WINETEST]
Amine Khaldi [Sat, 5 Oct 2013 20:44:20 +0000 (20:44 +0000)]
[COMDLG32_WINETEST]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60546

10 years ago[COMDLG32]
Amine Khaldi [Sat, 5 Oct 2013 20:43:34 +0000 (20:43 +0000)]
[COMDLG32]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60545

10 years ago[UUID]
Amine Khaldi [Sat, 5 Oct 2013 20:39:50 +0000 (20:39 +0000)]
[UUID]
* Add IID_IPrintDialogCallback.

svn path=/trunk/; revision=60544

10 years agoForgot this one.
Hermès Bélusca-Maïto [Sat, 5 Oct 2013 20:10:06 +0000 (20:10 +0000)]
Forgot this one.

svn path=/trunk/; revision=60542

10 years ago[CSRSRV]
Hermès Bélusca-Maïto [Sat, 5 Oct 2013 20:06:47 +0000 (20:06 +0000)]
[CSRSRV]
- Do not associate the newly created wait block to the waiting thread (in CsrInitializeWait) in case this one is going to terminate, but do it instead in CsrCreateWait, where the check actually takes place.
- Avoid PPORT_MESSAGE casts.
- Fix a list insertion problem in CsrMoveSatisfiedWait.
- Fix some descriptions / comments.

svn path=/trunk/; revision=60541

10 years ago[Win32ss]
James Tabor [Sat, 5 Oct 2013 19:57:22 +0000 (19:57 +0000)]
[Win32ss]
- Add support for loading hook modules.

svn path=/trunk/; revision=60539

10 years ago[CSRSRV]
Hermès Bélusca-Maïto [Sat, 5 Oct 2013 17:29:27 +0000 (17:29 +0000)]
[CSRSRV]
- Hardcoded_value--;
- Be sure SizeOfProcessData is initialized to zero before doing anything later on.

svn path=/trunk/; revision=60538

10 years ago[CSRSRV]: Fix two DPRINTs.
Hermès Bélusca-Maïto [Sat, 5 Oct 2013 17:24:31 +0000 (17:24 +0000)]
[CSRSRV]: Fix two DPRINTs.

svn path=/trunk/; revision=60537

10 years ago[PSDK]
Amine Khaldi [Sat, 5 Oct 2013 16:43:32 +0000 (16:43 +0000)]
[PSDK]
* Update commdlg.h.

svn path=/trunk/; revision=60536

10 years ago[MSV1_0]
Eric Kohl [Sat, 5 Oct 2013 15:27:26 +0000 (15:27 +0000)]
[MSV1_0]
Add the password check to the logon routine.

svn path=/trunk/; revision=60535

10 years ago[BROWSEUI_WINETEST]
Amine Khaldi [Sat, 5 Oct 2013 12:32:51 +0000 (12:32 +0000)]
[BROWSEUI_WINETEST]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60534

10 years ago[SAMRPC]
Eric Kohl [Sat, 5 Oct 2013 12:26:33 +0000 (12:26 +0000)]
[SAMRPC]
SampQueryUserAll: Implement the retrieval of LM and NT passwords by trusted callers.

svn path=/trunk/; revision=60533

10 years ago[NTDLL]: Stubplement and export LdrFlushAlternateResourceModules needed for Windows...
Hermès Bélusca-Maïto [Sat, 5 Oct 2013 12:06:59 +0000 (12:06 +0000)]
[NTDLL]: Stubplement and export LdrFlushAlternateResourceModules needed for Windows 2k3 user32.dll and winsrv.dll .
[RTL]: Stubplement and export RtlConsoleMultiByteToUnicodeN (and fallback to RtlMultiByteToUnicodeN) needed for WIndows 2k3 winsrv.dll

CORE-7481 #comment LdrFlushAlternateResourceModules and RtlConsoleMultiByteToUnicodeN stubplemented in revision 60532.

svn path=/trunk/; revision=60532

10 years ago[ADVAPI32_WINETEST]
Amine Khaldi [Sat, 5 Oct 2013 10:38:32 +0000 (10:38 +0000)]
[ADVAPI32_WINETEST]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60531

10 years ago[USER32_WINETEST]
Amine Khaldi [Sat, 5 Oct 2013 10:20:53 +0000 (10:20 +0000)]
[USER32_WINETEST]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60530

10 years ago[SETUPAPI_WINETEST]
Amine Khaldi [Sat, 5 Oct 2013 09:51:37 +0000 (09:51 +0000)]
[SETUPAPI_WINETEST]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60529

10 years ago[PSDK]
Amine Khaldi [Sat, 5 Oct 2013 09:50:21 +0000 (09:50 +0000)]
[PSDK]
* Add missing ERROR_IN_WOW64 define.

svn path=/trunk/; revision=60528

10 years ago[SAMSRV]
Eric Kohl [Fri, 4 Oct 2013 22:23:25 +0000 (22:23 +0000)]
[SAMSRV]
SampQueryUserAll: Rewrite the handling of the WhichFields variable in order to simplify the support of trusted user information.

svn path=/trunk/; revision=60527

10 years ago[INTSAFE.H]
Timo Kreuzer [Fri, 4 Oct 2013 14:08:27 +0000 (14:08 +0000)]
[INTSAFE.H]
- Mark UINT_MAX and UINT32_MAX as unsigned

svn path=/trunk/; revision=60524

10 years ago[INTSAFE.H]
Timo Kreuzer [Fri, 4 Oct 2013 13:39:58 +0000 (13:39 +0000)]
[INTSAFE.H]
- Use SAL2 instead of SAL1

svn path=/trunk/; revision=60523

10 years ago[INTSAFE.H]
Timo Kreuzer [Fri, 4 Oct 2013 13:37:25 +0000 (13:37 +0000)]
[INTSAFE.H]
- Rename internal macros and add comments to make it more obvious what the macro does
- Add UShortMult

svn path=/trunk/; revision=60522

10 years ago[LIBWINE]
Amine Khaldi [Fri, 4 Oct 2013 11:02:39 +0000 (11:02 +0000)]
[LIBWINE]
* Use atl100.dll directly to create a registrar instance.
CORE-7469

svn path=/trunk/; revision=60521

10 years ago[MESA]
Jérôme Gardou [Fri, 4 Oct 2013 10:51:37 +0000 (10:51 +0000)]
[MESA]
 - fix build
CORE-7499

svn path=/trunk/; revision=60520

10 years ago[OPENGL32]
Jérôme Gardou [Fri, 4 Oct 2013 10:44:43 +0000 (10:44 +0000)]
[OPENGL32]
 - Assorted changes of previous commit
CORE-7499

svn path=/trunk/; revision=60519

10 years ago[MESA]
Jérôme Gardou [Fri, 4 Oct 2013 10:33:03 +0000 (10:33 +0000)]
[MESA]
 - leaner build part 12 of X
 - Get rid of ARB_color_buffer_float, ARB_framebuffer_object, EXT_texture_lod_bias, SGIS_generate_mipmap and SGIS_texture_lod extensions.
CORE-7499

svn path=/trunk/; revision=60518

10 years ago[NTMARTA]
Eric Kohl [Thu, 3 Oct 2013 20:58:47 +0000 (20:58 +0000)]
[NTMARTA]
AccRewriteSetEntriesInAcl: Do not allocate an empty ACL.

svn path=/trunk/; revision=60517

10 years ago[MESA]
Jérôme Gardou [Thu, 3 Oct 2013 20:56:51 +0000 (20:56 +0000)]
[MESA]
 - leaner build part 11 of X
 - Get rid of ARB_draw_buffers, ARB_draw_buffers2, ARB_draw_buffers_blend extensions.
CORE-7499

svn path=/trunk/; revision=60516

10 years ago[MESA]
Jérôme Gardou [Thu, 3 Oct 2013 18:35:20 +0000 (18:35 +0000)]
[MESA]
 - leaner build part 10 of X
 - Get rid of ARB_copy_buffer, ARB_depth_buffer_float, ARB_draw_instanced, ARB_texrure_buffer_object, ARB_uniform_buffer_object, EXT_framebuffer_sRGB, EXT_packed_depth_stencil, {MESA,EXT}_texture_array, EXT_texture_sRGB extensions.
CORE-7499

svn path=/trunk/; revision=60514

10 years ago[msv1_0]
Eric Kohl [Thu, 3 Oct 2013 15:41:02 +0000 (15:41 +0000)]
[msv1_0]
- Fix pointer fix-up of domain name, user name and password. This failed for null pointers.
- Update the dispatch table and create a logon session as part of the user logon.

svn path=/trunk/; revision=60513

10 years ago[MESA]
Jérôme Gardou [Thu, 3 Oct 2013 15:35:52 +0000 (15:35 +0000)]
[MESA]
 - leaner build part 9 of X
 - Get rid of NV_texture_rectangle, ARB_ES2_compatibility, NV_primitive_restart extensions and texture compression.
CORE-7499

svn path=/trunk/; revision=60512

10 years ago[MESA]
Jérôme Gardou [Wed, 2 Oct 2013 15:06:13 +0000 (15:06 +0000)]
[MESA]
 - leaner build part 8 of X
 - Get rid of the support for opengl ES and their extensions, the ARB_depth_clamp extension and the program implementation of the fixed function pipeline.
CORE-7499

svn path=/trunk/; revision=60511

10 years ago[OPENGL32]
Jérôme Gardou [Tue, 1 Oct 2013 23:08:50 +0000 (23:08 +0000)]
[OPENGL32]
 - Initialize the viewport when setting the context as current for the first time.

svn path=/trunk/; revision=60510

10 years ago[[MESA]
Jérôme Gardou [Tue, 1 Oct 2013 22:44:06 +0000 (22:44 +0000)]
[[MESA]
 - leaner build part 7 of X
 - Get rid of the ARB_draw_elements and ARB_fragment_coord_conventions extensions
CORE-7499

svn path=/trunk/; revision=60509

10 years ago[DEVENUM_WINETEST]
Amine Khaldi [Tue, 1 Oct 2013 22:09:10 +0000 (22:09 +0000)]
[DEVENUM_WINETEST]
* Import from Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60508

10 years ago[DEVENUM]
Amine Khaldi [Tue, 1 Oct 2013 22:07:54 +0000 (22:07 +0000)]
[DEVENUM]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60507

10 years ago[DEVENUM]
Amine Khaldi [Tue, 1 Oct 2013 21:49:43 +0000 (21:49 +0000)]
[DEVENUM]
* Move to directx/wine.
CORE-7495 #resolve

svn path=/trunk/; revision=60506

10 years ago[[MESA]
Jérôme Gardou [Tue, 1 Oct 2013 21:37:39 +0000 (21:37 +0000)]
[[MESA]
 - leaner build part 6 of X
 - Get rid of the ARB_blend_func_extended, ARB_explicit_attrib_location, ARB_seamless_cube_map, ARB_texture_multisample extension EXT_provoking_vertex, EXT_vertex_array_bgra and AMD_seamless_cubemap_per_texture extensions
#CORE-7499

svn path=/trunk/; revision=60505

10 years ago[[MESA]
Jérôme Gardou [Tue, 1 Oct 2013 19:43:16 +0000 (19:43 +0000)]
[[MESA]
 - leaner build part 5 of X
 - Fix build from part 4 (damn you tortoiseSVN)
 - Get rid of the ARB_instanced_arrays extension

svn path=/trunk/; revision=60504

10 years ago[MESA]
Jérôme Gardou [Tue, 1 Oct 2013 19:30:37 +0000 (19:30 +0000)]
[MESA]
 - leaner build part 4 of X
 - Get rid of ARB_occlusion_query, ARB_occlusion_query2, ARB_sync, ARB_transform_feedback2, EXT_draw_buffers2, EXT_transform_feedback, EXT_timer_query, ATI_fragment_shader (this time for real) and NV_conditional_render extensions

svn path=/trunk/; revision=60503

10 years ago[NTOS:MM]
Thomas Faber [Tue, 1 Oct 2013 17:51:38 +0000 (17:51 +0000)]
[NTOS:MM]
- Print some debug information on assertion failures in MiDecrementReferenceCount.
CORE-6690

svn path=/trunk/; revision=60502

10 years ago[DXDIAGN_WINETEST]
Amine Khaldi [Tue, 1 Oct 2013 17:49:24 +0000 (17:49 +0000)]
[DXDIAGN_WINETEST]
* Import from Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60501

10 years ago[DXDIAGN]
Amine Khaldi [Tue, 1 Oct 2013 17:46:41 +0000 (17:46 +0000)]
[DXDIAGN]
* Sync with Wine 1.7.1. It was synced just recently (8 years ago) but there's not harm in syncing it again ;)
CORE-7469

svn path=/trunk/; revision=60500

10 years ago[OPENGL32]
Jérôme Gardou [Tue, 1 Oct 2013 17:39:38 +0000 (17:39 +0000)]
[OPENGL32]
 - Do not spam debug logs with wrong calls to wglGetProcAddress

svn path=/trunk/; revision=60499

10 years ago[DXSDK]
Amine Khaldi [Tue, 1 Oct 2013 17:03:53 +0000 (17:03 +0000)]
[DXSDK]
* Add missing INTERFACE undef.

svn path=/trunk/; revision=60498

10 years ago[MESA]
Amine Khaldi [Tue, 1 Oct 2013 16:48:56 +0000 (16:48 +0000)]
[MESA]
* Fix MSVC build.

svn path=/trunk/; revision=60497

10 years ago[MESA]
Jérôme Gardou [Tue, 1 Oct 2013 16:44:47 +0000 (16:44 +0000)]
[MESA]
 - leaner build part 3 of X
 - Get rid of ARB_depth_texture, ARB_sampler_objects, ARB_shadow, ARB_shadow_ambient, ARB_texture_rgb10a2ui, ARB_timer_query and EXT_texture_sRGB_decode extensions

svn path=/trunk/; revision=60496

10 years ago* Correct the sync info of dplay and dplayx (svn ?!).
Amine Khaldi [Tue, 1 Oct 2013 15:10:44 +0000 (15:10 +0000)]
* Correct the sync info of dplay and dplayx (svn ?!).

svn path=/trunk/; revision=60495

10 years ago[AMSTREAM_WINETEST]
Amine Khaldi [Tue, 1 Oct 2013 15:07:45 +0000 (15:07 +0000)]
[AMSTREAM_WINETEST]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60494

10 years ago[AMSTREAM]
Amine Khaldi [Tue, 1 Oct 2013 15:06:37 +0000 (15:06 +0000)]
[AMSTREAM]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60493

10 years ago[PSAPI_WINETEST]
Amine Khaldi [Tue, 1 Oct 2013 14:59:36 +0000 (14:59 +0000)]
[PSAPI_WINETEST]
* Fix a typo.

svn path=/trunk/; revision=60491

10 years ago[MESA]
Jérôme Gardou [Tue, 1 Oct 2013 14:39:31 +0000 (14:39 +0000)]
[MESA]
 - leaner build part 2 of X
 - Get rid of EXT_texture_swizzle and ARB_vertex_type_2_10_10_10_rev extensions

svn path=/trunk/; revision=60490

10 years ago[MESA]
Jérôme Gardou [Tue, 1 Oct 2013 13:34:32 +0000 (13:34 +0000)]
[MESA]
 - Those files where not included to the commit for some obscure reason.

svn path=/trunk/; revision=60489

10 years ago[MESA]
Jérôme Gardou [Tue, 1 Oct 2013 13:27:57 +0000 (13:27 +0000)]
[MESA]
 - leaner build part 1 of X
 - Get rid of some fancy formats

svn path=/trunk/; revision=60488

10 years ago[NTOS:CC]
Thomas Faber [Mon, 30 Sep 2013 20:06:18 +0000 (20:06 +0000)]
[NTOS:CC]
- Remove CacheSegmentSize
- Misc simplifications and style improvements
CORE-7491

svn path=/trunk/; revision=60484

10 years ago[DSOUND]
Sylvain Petreolle [Mon, 30 Sep 2013 19:58:15 +0000 (19:58 +0000)]
[DSOUND]
Fix version.rc inclusion.

svn path=/trunk/; revision=60483

10 years ago[LSASRV]
Eric Kohl [Mon, 30 Sep 2013 19:49:46 +0000 (19:49 +0000)]
[LSASRV]
Move the session functions into a separate file and implement basic session management routines.

svn path=/trunk/; revision=60482

10 years ago[NTOSKRNL]
Thomas Faber [Mon, 30 Sep 2013 19:40:09 +0000 (19:40 +0000)]
[NTOSKRNL]
- BCB::CacheSegmentSize has no reason to vary at runtime. Replace it with the constant VACB_MAPPING_GRANULARITY.

svn path=/trunk/; revision=60481

10 years ago[DPLAYX_WINETEST]
Amine Khaldi [Mon, 30 Sep 2013 18:15:14 +0000 (18:15 +0000)]
[DPLAYX_WINETEST]
* Import from Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60480

10 years ago[DPLAYX]
Amine Khaldi [Mon, 30 Sep 2013 18:14:44 +0000 (18:14 +0000)]
[DPLAYX]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60479

10 years ago[DPLAY]
Amine Khaldi [Mon, 30 Sep 2013 18:12:42 +0000 (18:12 +0000)]
[DPLAY]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60478

10 years ago[MMDEVAPI_WINETEST]
Amine Khaldi [Mon, 30 Sep 2013 13:35:12 +0000 (13:35 +0000)]
[MMDEVAPI_WINETEST]
* Import from Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60477

10 years ago[MMDEVAPI]
Amine Khaldi [Mon, 30 Sep 2013 13:32:32 +0000 (13:32 +0000)]
[MMDEVAPI]
* Import from Wine 1.7.1. Dedicated to Johannes Anderwald.
CORE-7469

svn path=/trunk/; revision=60476

10 years ago[DSOUND_WINETEST]
Amine Khaldi [Mon, 30 Sep 2013 11:39:02 +0000 (11:39 +0000)]
[DSOUND_WINETEST]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60475

10 years ago[DSOUND]
Amine Khaldi [Mon, 30 Sep 2013 11:38:41 +0000 (11:38 +0000)]
[DSOUND]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60474

10 years ago[PSAPI_WINETEST]
Sylvain Petreolle [Mon, 30 Sep 2013 08:54:02 +0000 (08:54 +0000)]
[PSAPI_WINETEST]
Don't forget brackets on Monday, thanks Pierre :)

svn path=/trunk/; revision=60473

10 years ago[PSAPI_WINETEST]
Sylvain Petreolle [Mon, 30 Sep 2013 08:46:05 +0000 (08:46 +0000)]
[PSAPI_WINETEST]
* Amine, don't deny the user's rights to run disabled tests on demand.

svn path=/trunk/; revision=60472

10 years ago[PSAPI_WINETEST]
Amine Khaldi [Mon, 30 Sep 2013 08:10:07 +0000 (08:10 +0000)]
[PSAPI_WINETEST]
* Fix MSVC build.
* Speedup build.
* Pierre, can you please consult with me before stepping on my toes (with improper syncs) ?

svn path=/trunk/; revision=60471

10 years ago[PSAPI_WINETEST]
Pierre Schweitzer [Mon, 30 Sep 2013 06:27:03 +0000 (06:27 +0000)]
[PSAPI_WINETEST]
Sync with Wine 1.7.1
CORE-7469

Tests for EnumProcessModules() have been skipped since they cause stack corruption
ROSTESTS-122

svn path=/trunk/; revision=60470

10 years ago[PSDK]
Pierre Schweitzer [Mon, 30 Sep 2013 06:22:27 +0000 (06:22 +0000)]
[PSDK]
Add missing define for MEMORY_SECTION_NAME

svn path=/trunk/; revision=60469

10 years ago[NTOS:CC]
Thomas Faber [Sun, 29 Sep 2013 21:08:15 +0000 (21:08 +0000)]
[NTOS:CC]
- A BCB's cache segment list is sorted -- so actually make use of that property during list traversal
- Fix inverted wait condition in CcZeroData
- Correct offset check in CcSetFileSizes
CORE-7491

svn path=/trunk/; revision=60457

10 years ago[NTOS:CC]
Thomas Faber [Sun, 29 Sep 2013 20:52:23 +0000 (20:52 +0000)]
[NTOS:CC]
- Simplify cache segment range checks
- Remove unused function CcRosFreeCacheSegment
- Minor style fixes
CORE-7491

svn path=/trunk/; revision=60456

10 years ago[DIRECTX/WINE]
Amine Khaldi [Sun, 29 Sep 2013 16:10:32 +0000 (16:10 +0000)]
[DIRECTX/WINE]
* Move Wine DirectX related dlls to the appropriate folder.
CORE-7495 #resolve

svn path=/trunk/; revision=60454

10 years ago[CABMAN]
Amine Khaldi [Sun, 29 Sep 2013 14:48:37 +0000 (14:48 +0000)]
[CABMAN]
* Show the status messages only in -V mode.
* Improve error messages by marking them as ERROR/WARNING.
* Brought to you by David Quintana.
CORE-7477 #resolve #comment Committed in r60449. Gracias.

svn path=/trunk/; revision=60449

10 years ago[WIN32K]
Amine Khaldi [Sun, 29 Sep 2013 14:33:09 +0000 (14:33 +0000)]
[WIN32K]
* Improve sanity checking in IntEngAlphaBlend(). Brought to you by Huw Campbell (huw .dot. campbell @at@ gmail .dot. com)
CORE-7458 #resolve #comment Committed in r60448. Thanks ;)

svn path=/trunk/; revision=60448

10 years ago[DINPUT_WINETEST]
Amine Khaldi [Sun, 29 Sep 2013 12:17:56 +0000 (12:17 +0000)]
[DINPUT_WINETEST]
* Speedup build.

svn path=/trunk/; revision=60447

10 years ago[DINPUT]
Amine Khaldi [Sun, 29 Sep 2013 12:16:54 +0000 (12:16 +0000)]
[DINPUT]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60446

10 years ago[INCLUDE]
Eric Kohl [Sun, 29 Sep 2013 11:08:27 +0000 (11:08 +0000)]
[INCLUDE]
Add the directory service setup interface definition files.

svn path=/trunk/; revision=60445

10 years ago[UNICODE]
Amine Khaldi [Sun, 29 Sep 2013 10:52:38 +0000 (10:52 +0000)]
[UNICODE]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60444

10 years ago[SAMSRV]
Eric Kohl [Sun, 29 Sep 2013 08:53:24 +0000 (08:53 +0000)]
[SAMSRV]
SamrDeleteAlias: Remove all members from an alias before it will be deleted.

svn path=/trunk/; revision=60443

10 years ago[ADVAPI32]
Eric Kohl [Sat, 28 Sep 2013 19:36:27 +0000 (19:36 +0000)]
[ADVAPI32]
EqualSid: Set last error to ERROR_SUCCESS before calling RtlEqualSid.

svn path=/trunk/; revision=60442

10 years ago[XMLLITE_WINETEST]
Amine Khaldi [Sat, 28 Sep 2013 15:43:21 +0000 (15:43 +0000)]
[XMLLITE_WINETEST]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60440

10 years ago[XMLLITE]
Amine Khaldi [Sat, 28 Sep 2013 15:42:58 +0000 (15:42 +0000)]
[XMLLITE]
* Sync with Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60439

10 years ago[XINPUT1_3_WINETEST]
Amine Khaldi [Sat, 28 Sep 2013 15:39:51 +0000 (15:39 +0000)]
[XINPUT1_3_WINETEST]
* Import from Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60438