42 lines
826 B
C++
42 lines
826 B
C++
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997 - 1999
|
|
//
|
|
// File: global.hxx
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _MAKECERT_GLOBAL_H
|
|
#define _MAKECERT_GLOBAL_H
|
|
|
|
#include <windows.h>
|
|
#include <assert.h>
|
|
|
|
#include "wincrypt.h"
|
|
#include "unicode.h"
|
|
#include "pvkhlpr.h"
|
|
#include "signer.h"
|
|
#include "mssip.h"
|
|
#include "signhlp.h"
|
|
#include "toolutl.h"
|
|
#include "cryptreg.h"
|
|
|
|
#include "wintrust.h"
|
|
#include "softpub.h"
|
|
#include "mssip.h"
|
|
|
|
#include "resource.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <memory.h>
|
|
#include <time.h>
|
|
#include <malloc.h>
|
|
#include <wchar.h>
|
|
|
|
#endif
|