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.
41 lines
837 B
41 lines
837 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1995 - 1999
|
|
//
|
|
// File: certmgr.h
|
|
//
|
|
// Contents: the header for CertMgr tool
|
|
//
|
|
//
|
|
// History: 21-July-97 xiaohs created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef CERTMGR_H
|
|
#define CERTMGR_H
|
|
|
|
|
|
#include <windows.h>
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <memory.h>
|
|
#include <unicode.h>
|
|
#include <wchar.h>
|
|
|
|
#include "wincrypt.h"
|
|
#include "mssip.h"
|
|
#include "wintrust.h"
|
|
#include "sipbase.h"
|
|
#include "unicode.h"
|
|
#include "toolutl.h"
|
|
#include "certhlp.h"
|
|
#include "resource.h"
|
|
#include "cryptui.h"
|
|
|
|
|
|
|
|
#endif // CERTMGR_H
|