Implemented many console & registry functions to get registry explorer running.

Load services from registry - part 1 (disabled due to bug in registry).

svn path=/trunk/; revision=2216
This commit is contained in:
Casper Hornstrup 2001-09-01 15:36:45 +00:00
parent 17897f7c03
commit b83d417811
23 changed files with 2642 additions and 453 deletions

View file

@ -24,7 +24,7 @@
#endif
#ifndef NASSERT
#define assert(x) if (!(x)) {DbgPrint("Assertion "#x" failed at %s:%d\n", __FILE__,__LINE__); KeBugCheck(0); }
#define assert(x) if (!(x)) {RtlAssert("#x",__FILE__,__LINE__, ""); }
#else
#define assert(x)
#endif