reactos/rosapps/sysutils/regexpl/ph.h
Steven Edwards e9542274b4 Make regexpl build again. (I know I really should fix this to be unicode)
BTW this is a kick ass tool that does work over the network. I just tested it
editing the registry on the wifes box.

svn path=/trunk/; revision=11268
2004-10-11 01:24:22 +00:00

46 lines
1.1 KiB
C

/* $Id: ph.h,v 1.5 2004/10/11 01:24:22 sedwards Exp $ */
// 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
#ifdef DBG
#define _DEBUG
#endif
#include <tchar.h>
#include <stdio.h>
#include <stdlib.h>
#include <wchar.h>
#include <assert.h>
#include <ctype.h>
#include <tchar.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>
// INHERITED_ACE is from windows 2000
#ifndef INHERITED_ACE
#define INHERITED_ACE (0x10)
#endif
#endif // !defined(PH_H__FEF419E3_6EB6_11D3_907D_204C4F4F5020__INCLUDED_)