windows-nt/Source/XPSP1/NT/ds/security/cryptoapi/mincrypt/lib/global.hxx
2020-09-26 16:20:57 +08:00

48 lines
1.1 KiB
C++

//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 2001 - 2001
//
// File: global.hxx
//
// Contents: Top level internal header file.
//
// History: 16-Jan-01 phil created
//
//--------------------------------------------------------------------------
#pragma warning(push,3)
#include <windows.h>
#include <assert.h>
#include <memory.h>
#include <stddef.h>
#pragma warning (pop)
// unreferenced inline function has been removed
#pragma warning (disable: 4514)
// unreferenced formal parameter
#pragma warning (disable: 4100)
// conditional expression is constant
#pragma warning (disable: 4127)
// assignment within conditional expression
#pragma warning (disable: 4706)
// nonstandard extension used : nameless struct/union
#pragma warning (disable: 4201)
#include "minasn1.h"
#include "mincrypt.h"
#include "fileutil.h"
#include "imagehack.h"
#define I_MemAlloc(cb) ((void*)LocalAlloc(LPTR, cb))
#define I_MemFree(pv) (LocalFree((HLOCAL)pv))
#pragma hdrstop