26 lines
532 B
C++
26 lines
532 B
C++
//+--------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1999
|
|
//
|
|
// File: pch.cpp
|
|
//
|
|
// Contents: Cert Server precompiled header
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#define __DIR__ "certut"
|
|
|
|
#include <windows.h>
|
|
#include <stdlib.h>
|
|
#include <wincrypt.h>
|
|
|
|
#include "certsrv.h"
|
|
|
|
#include "certlib.h"
|
|
#include "csdisp.h"
|
|
|
|
#include "certutil.h"
|
|
|
|
#pragma hdrstop
|