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.
59 lines
1011 B
59 lines
1011 B
/*++
|
|
|
|
Copyright (c) 1998-2000 Microsoft Corporation
|
|
|
|
Module Name :
|
|
precomp.hxx
|
|
|
|
Abstract:
|
|
Test harness for LKRhash
|
|
|
|
Author:
|
|
George V. Reilly (GeorgeRe) 06-Jan-1998
|
|
|
|
Environment:
|
|
Win32 - User Mode
|
|
|
|
Project:
|
|
Internet Information Server RunTime Library
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __PRECOMP_HXX__
|
|
#define __PRECOMP_HXX__
|
|
|
|
#include <windows.h>
|
|
|
|
#include <tchar.h>
|
|
#include <process.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <io.h>
|
|
#include <stddef.h>
|
|
#include <conio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <time.h>
|
|
#include <malloc.h>
|
|
#include <mmsystem.h>
|
|
|
|
#include <IrtlDbg.h>
|
|
|
|
#include "../../../src/i-Locks.h"
|
|
#include "../../../src/i-Debug.h"
|
|
|
|
#if 1
|
|
// internal API
|
|
# undef LKR_PUBLIC_API
|
|
# include <LKRhash.h>
|
|
#else
|
|
// public API
|
|
# define LKR_PUBLIC_API
|
|
# include <LKR-hash.h>
|
|
#endif
|
|
|
|
#include "../../../src/i-LKRhash.h"
|
|
|
|
#endif // __PRECOMP_HXX__
|