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.
42 lines
781 B
42 lines
781 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// File: parsecath.h
|
|
//
|
|
// Contents: The precompiled headers file.
|
|
//
|
|
// History: AshishS Created 6/27/99
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
#ifndef _COMMONLIB_HEADERS_H_
|
|
#define _COMMONLIB_HEADERS_H_
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <memory.h>
|
|
#include <tchar.h>
|
|
#include <locale.h>
|
|
|
|
|
|
|
|
|
|
|
|
// use the _ASSERT and _VERIFY in dbgtrace.h
|
|
#ifdef _ASSERT
|
|
#undef _ASSERT
|
|
#endif
|
|
|
|
#ifdef _VERIFY
|
|
#undef _VERIFY
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <dbgtrace.h>
|
|
// #include <sfp.h>
|
|
#include <traceids.h>
|
|
// #include <constants.h>
|
|
#include <commonlib.h>
|
|
|
|
#endif
|