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.
53 lines
570 B
53 lines
570 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
precomp.h
|
|
|
|
Abstract:
|
|
|
|
Master include file.
|
|
|
|
Author:
|
|
|
|
Keith Moore (keithmo) 02-Dec-1996
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _PRECOMP_H_
|
|
#define _PRECOMP_H_
|
|
|
|
|
|
//
|
|
// System include files.
|
|
//
|
|
|
|
#include <windows.h>
|
|
#include <wincrypt.h>
|
|
#include <objbase.h>
|
|
|
|
|
|
//
|
|
// Project include files.
|
|
//
|
|
|
|
#include <dbgutil.h>
|
|
#include <iiscryptp.h>
|
|
|
|
#include <mdcommsg.h>
|
|
|
|
|
|
//
|
|
// Private include files.
|
|
//
|
|
|
|
#include <icryptp.h>
|
|
|
|
|
|
#endif // _PRECOMP_H_
|
|
|