Source code of Windows XP (NT5)
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.
|
|
//+-------------------------------------------------------------------------
//
// 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
|