Steven Edwards
8a5ffd220b
Fix pch usage in most of the rest of crt.lib. Stop the abuse of including io.h, stdio.h and a few others directly. Add a generic license header to those source files that were missing it. There is still a few other headers left to fix and a few files missing pch and license headers
...
svn path=/trunk/; revision=19564
2005-11-25 18:05:42 +00:00
Royce Mitchell III
8dc7b7d242
more descriptive debug message
...
svn path=/trunk/; revision=19563
2005-11-25 17:13:40 +00:00
Thomas Bluemel
cf25abaf77
add missing definitions
...
svn path=/trunk/; revision=19562
2005-11-25 17:02:43 +00:00
Thomas Bluemel
b14ed20764
display the hardware tab
...
svn path=/trunk/; revision=19561
2005-11-25 17:02:18 +00:00
Thomas Bluemel
e383ee91cc
fixed some resizing bugs
...
svn path=/trunk/; revision=19560
2005-11-25 16:30:41 +00:00
Thomas Bluemel
8cef988efb
- add a (very incomplete) devguid.h
...
- add mmsys.cpl to the build system and bootcd
svn path=/trunk/; revision=19559
2005-11-25 16:13:58 +00:00
Thomas Bluemel
fc31f8d474
fixed an error check
...
svn path=/trunk/; revision=19558
2005-11-25 16:03:14 +00:00
Thomas Bluemel
e8fe230b7f
add missing error check
...
svn path=/trunk/; revision=19557
2005-11-25 15:57:47 +00:00
Thomas Bluemel
2445f1e7b8
move the hardware page dialog into it's own file
...
svn path=/trunk/; revision=19556
2005-11-25 15:36:14 +00:00
Casper Hornstrup
185590b80c
Merge duplicate definitions
...
svn path=/trunk/; revision=19555
2005-11-25 14:40:28 +00:00
Casper Hornstrup
a77a018cab
Don't include files from outside a compilation unit
...
svn path=/trunk/; revision=19554
2005-11-25 14:38:59 +00:00
Thomas Bluemel
5934c2cb90
add devmgr.dll to the bootcd
...
svn path=/trunk/; revision=19553
2005-11-25 14:31:45 +00:00
Thomas Bluemel
98c03b78e2
fix a DeviceCreateHardwarePageEx call
...
svn path=/trunk/; revision=19552
2005-11-25 14:19:42 +00:00
Thomas Bluemel
75507318d0
Initial implementation of the hardware page, based on a patch by Gąsiorek <zebasoftis@reactos.org> (bug #986 )
...
svn path=/trunk/; revision=19551
2005-11-25 14:17:30 +00:00
Thomas Bluemel
790caeda87
Some header fixes by Sebastian Gąsiorek <zebasoftis@reactos.org>
...
svn path=/trunk/; revision=19550
2005-11-25 14:15:46 +00:00
James Tabor
582742dbf3
Fix caps.
...
svn path=/trunk/; revision=19549
2005-11-25 14:08:45 +00:00
James Tabor
ee2bdde974
Fix typo.
...
svn path=/trunk/; revision=19548
2005-11-25 13:48:16 +00:00
Brandon Turner
6a5ae63daf
Fix a typo in the header comments.
...
svn path=/trunk/; revision=19547
2005-11-25 13:01:44 +00:00
Casper Hornstrup
dfd37af193
Speedup compilation of kernel32
...
svn path=/trunk/; revision=19546
2005-11-25 11:53:30 +00:00
Magnus Olsen
2d49a98117
Greek Translation by Apal see bug 994
...
svn path=/trunk/; revision=19545
2005-11-25 10:35:27 +00:00
Magnus Olsen
0e7a928155
Greek Translation by Apal see bug 994
...
svn path=/trunk/; revision=19544
2005-11-25 10:22:12 +00:00
Hervé Poussineau
73cfd07f88
Return NULL when an error occurs in CreateServiceW
...
svn path=/trunk/; revision=19543
2005-11-25 09:30:09 +00:00
Steven Edwards
9e993871db
ifndef not ifdef....like I said, it works for me on my mingw either way
...
svn path=/trunk/; revision=19542
2005-11-25 04:39:08 +00:00
Brandon Turner
463a4180eb
Read the registry to set the wallpaper mode in in WinSta.
...
svn path=/trunk/; revision=19541
2005-11-25 04:14:59 +00:00
Andrew Greenwood
c605cb406b
Fixed GETDEVCAPS message handling (bad macros) and implemented some primitive memory leak detection.
...
svn path=/trunk/; revision=19540
2005-11-25 03:50:49 +00:00
Steven Edwards
f3fe57e7d8
add a check for gcc to the constants recently added for the msvc port. They seem to cause problems on some gcc's but not mine.
...
svn path=/trunk/; revision=19539
2005-11-25 03:41:24 +00:00
Alex Ionescu
cc63baeda1
- Update NDK to remove zwfuncs.h and place the native functions in their respective xxfuncs.h instead, so that applications can now include only what they need. Add more xxfuncs.h files for every API.
...
- Make the NDK smarter so that using #define NTOS_MODE_USER isn't needed anymore: the NDK can now auto-detect the presence of windows.h or ntddk.h and make the appropriate decision.
- re-arrange ntndk.h to include all types in alphabetical order, and then all functions, regardless of um/kmode usage.
- Make each file auto-detect if this is NTOS_MODE_USER or not and include each files it needs, instead of depending on a predefined order inside ntndk.h This way, any file can be included from both user-mode or kmode as simply as #include <iofuncs.h>, wthout any adtional work.
- Update FIXME list with these changes and delay NDK release date since my trip is lasting a day longer.
- Fix ntsecapi.h to define UNICODE_STRING, like it does in the PSDK.
- Fix apps including ntsecapi + winternl.h These two cause a conflict even on PSDK and shouldn't be included together.
- Make winlogon include only the NDK files it needs (2) instead of the whole NDK, as test for this faster newly supported method.
- Remove some NDK apps from the FIXME list (the ones that weren't being built/are on my rewrite branch/are better off including the whole NDK instead of file-by-file).
- Update debug.h to define RtlAssert and DbgPrint in case the NDK or DDK aren't already included, which will allow some of the apps to stop using the NDK solely for DPRINT/DPRINT1. Diabled for now since a lot of code needs to be changed to #include <debug.h> *After* they include the other headers. (so that the anti-double-definition check can work).
svn path=/trunk/; revision=19538
2005-11-25 00:17:40 +00:00
Ged Murphy
1c7c9e87d1
silence some warnings.
...
svn path=/trunk/; revision=19537
2005-11-24 23:07:36 +00:00
James Tabor
2b1c91b1ff
Fix missed files. Svn problem?
...
svn path=/trunk/; revision=19536
2005-11-24 22:08:38 +00:00
Hartmut Birr
33d6b7b736
- Allow trailing back slashes only for directories.
...
- Allow trailing back slashes, if a new directory will be created.
svn path=/trunk/; revision=19535
2005-11-24 21:08:13 +00:00
Gé van Geldorp
41909c195a
Fix optimized builds
...
svn path=/trunk/; revision=19534
2005-11-24 18:05:53 +00:00
Casper Hornstrup
76b89d54d9
Store renamed file in the right directory
...
svn path=/trunk/; revision=19533
2005-11-24 17:57:15 +00:00
Casper Hornstrup
419247baed
Rename ISO before upload
...
svn path=/trunk/; revision=19532
2005-11-24 16:33:38 +00:00
Hervé Poussineau
edb771ae7d
Patch by Elrond:
...
- Let NpfsListeningCancelRoutine show the pipe name it is trying to act on.
- Add more ASSERT()s to NpfsRead, which seems to act quite strange sometimes
svn path=/trunk/; revision=19531
2005-11-24 16:23:07 +00:00
Andrew Greenwood
fc3b932fc8
Partial implementation of WDMAUD.DRV - device capability querying fails
...
svn path=/trunk/; revision=19530
2005-11-24 14:36:47 +00:00
Hervé Poussineau
1620efc250
Display the unknown class name in error message
...
svn path=/trunk/; revision=19529
2005-11-24 14:34:44 +00:00
Andrew Greenwood
665a853e70
Fixing EOL...
...
svn path=/trunk/; revision=19528
2005-11-24 14:34:41 +00:00
Casper Hornstrup
e0c1c5a1df
Check for presence of directory
...
svn path=/trunk/; revision=19527
2005-11-24 13:57:25 +00:00
Andrew Greenwood
51c3c77902
Remove portcls from old location
...
svn path=/trunk/; revision=19526
2005-11-24 13:33:37 +00:00
Andrew Greenwood
b0d0ca15fb
Some preliminary stubbing of the Kernel Streaming components (portcls being moved from other directory)
...
svn path=/trunk/; revision=19525
2005-11-24 13:30:51 +00:00
Hervé Poussineau
aa70297ede
Sort entries in usbport.def
...
Define some functions only if DEBUG_MODE is defined
svn path=/trunk/; revision=19524
2005-11-24 13:22:13 +00:00
Casper Hornstrup
5247d48cf1
Publish ISOs via FTP
...
svn path=/trunk/; revision=19523
2005-11-24 12:34:08 +00:00
Hervé Poussineau
125e25d424
Set Tag value in registry when needed.
...
(Not tested due to bug 1048)
svn path=/trunk/; revision=19522
2005-11-24 11:03:23 +00:00
Hervé Poussineau
06ce8efe4f
Fix Start value for mouclass driver, which was leading to not detect legacy mouse drivers as i8042prt
...
svn path=/trunk/; revision=19521
2005-11-24 09:33:29 +00:00
Hervé Poussineau
bc8462e40a
Detect devices using the NULL driver, and set the STARTED flag
...
svn path=/trunk/; revision=19520
2005-11-24 09:18:16 +00:00
Hervé Poussineau
c4cc828696
Fix access rights when opening registry keys
...
Better traces
svn path=/trunk/; revision=19519
2005-11-24 09:11:44 +00:00
Hervé Poussineau
1361420584
Third parameter in INF AddService directive seems to be optional. Ignore the error if it is missing
...
Implement SetupDiGetDeviceInfoListDetailW
svn path=/trunk/; revision=19518
2005-11-24 09:05:38 +00:00
Gé van Geldorp
5976ea377e
Use inflib
...
svn path=/trunk/; revision=19517
2005-11-24 08:12:20 +00:00
Gé van Geldorp
1c781d1933
- Factor out .inf handling code from usetup
...
- Provide a dual interface, for use in build tools and for use in ReactOS code
svn path=/trunk/; revision=19516
2005-11-24 08:07:12 +00:00
Steven Edwards
59a50a6f88
more msvc compile fixes by Brezenbak and I
...
svn path=/trunk/; revision=19515
2005-11-24 06:07:04 +00:00