41 lines
889 B
C
41 lines
889 B
C
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows NT Security
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1999
|
||
|
//
|
||
|
// File: stdpch.h
|
||
|
//
|
||
|
// Contents: Precompiled Header stuff
|
||
|
//
|
||
|
// History: 08-May-97 kirtd Created
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
#if !defined(__STDPCH_H__)
|
||
|
#define __STDPCH_H__
|
||
|
|
||
|
#include <assert.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <windows.h>
|
||
|
#include <prsht.h>
|
||
|
#include <richedit.h>
|
||
|
#include <commctrl.h>
|
||
|
|
||
|
#include "wincrypt.h"
|
||
|
#include "wintrust.h"
|
||
|
#include "wintrustp.h"
|
||
|
#include "mssip.h" // def for spc_link..
|
||
|
|
||
|
#include "gendefs.h"
|
||
|
#include "util.h"
|
||
|
#include "acui.h"
|
||
|
#include "iih.h"
|
||
|
#include "pertrust.h"
|
||
|
#include "acuictl.h"
|
||
|
#include "trustuir.h"
|
||
|
#include "unicode.h"
|
||
|
#include "internal.h"
|
||
|
|
||
|
#endif
|