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.
33 lines
775 B
33 lines
775 B
//+--------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1999
|
|
//
|
|
// File: pch.cpp
|
|
//
|
|
// Contents: Cert Server precompiled header
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#define __DIR__ "default"
|
|
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
#ifndef MAXDWORD
|
|
# define MAXDWORD MAXULONG
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
#include <atlbase.h>
|
|
|
|
//You may derive a class from CComModule and use it if you want to override
|
|
//something, but do not change the name of _Module
|
|
extern CComModule _Module;
|
|
|
|
#include <atlcom.h>
|
|
#include "tfc.h"
|
|
#include <certsrv.h>
|
|
#include "certlib.h"
|
|
|
|
#pragma hdrstop
|