mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
761 B
34 lines
761 B
//+--------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1994, Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
// File: precomop.h
|
|
//
|
|
// Contents: Internal include file for Token Hammer.
|
|
//
|
|
// History: 22-May-95 PatHal Created
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef _PRECOMP_H_
|
|
#define _PRECOMP_H_
|
|
|
|
#define UNICODE
|
|
#include <windows.h>
|
|
#include <memory.h>
|
|
#include <malloc.h>
|
|
#include <string.h>
|
|
#include <wchar.h>
|
|
#include <excpt.h>
|
|
|
|
//#include "cierror.h"
|
|
#include "ctplus0.h"
|
|
//#include "filter.h"
|
|
#include "log.h"
|
|
//#include "query.h"
|
|
#include "thammer.h"
|
|
#include "thammerp.h"
|
|
|
|
#define unreference(x) (x)
|
|
|
|
#endif //_PRECOMP_H_
|