Registry Explorer (console tool) by Nedko Arnaoudov added to the system utilities subtree.

Also here: http://www.geocities.com/registryexplorer/

svn path=/trunk/; revision=1375
This commit is contained in:
Emanuele Aliberti 2000-10-04 21:04:31 +00:00
parent f3632d15b8
commit ae69a8e1e4
53 changed files with 7055 additions and 2 deletions

View file

@ -0,0 +1,32 @@
// ph.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
// it is used to generate precompiled header file, if supported.
#if !defined(PH_H__FEF419E3_6EB6_11D3_907D_204C4F4F5020__INCLUDED_)
#define PH_H__FEF419E3_6EB6_11D3_907D_204C4F4F5020__INCLUDED_
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// comment next two lines to compile ANSI version
//#define UNICODE
//#define _UNICODE
#include <TCHAR.H>
#include <stdio.h>
#include <stdlib.h>
#include <wchar.h>
#include <assert.h>
#define ASSERT assert
#ifdef _DEBUG
#define VERIFY ASSERT
#else
#define VERIFY(e) (e)
#endif
#include <windows.h>
#include <wincon.h>
#include <conio.h>
#include <limits.h>
#endif // !defined(PH_H__FEF419E3_6EB6_11D3_907D_204C4F4F5020__INCLUDED_)