27 lines
549 B
C
27 lines
549 B
C
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows NT Security
|
||
|
// Copyright (C) Microsoft Corporation, 1997 - 1999
|
||
|
//
|
||
|
// File: winchain.h
|
||
|
//
|
||
|
// Contents: Certificate Chaining Infrastructure
|
||
|
//
|
||
|
// History: 15-Dec-97 kirtd Created
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
#if !defined(__WINCHAIN_H__)
|
||
|
#define __WINCHAIN_H__
|
||
|
|
||
|
#include <wincrypt.h>
|
||
|
|
||
|
#if defined(__cplusplus)
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#if defined(__cplusplus)
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|