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.
25 lines
547 B
25 lines
547 B
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1997, Microsoft Corp. All rights reserved.
|
|
//
|
|
// FILE
|
|
//
|
|
// iaspragma.h
|
|
//
|
|
// SYNOPSIS
|
|
//
|
|
// Compiler pragma's used by IAS.
|
|
//
|
|
// MODIFICATION HISTORY
|
|
//
|
|
// 07/09/1997 Original version.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _IASPRAGMA_H_
|
|
#define _IASPRAGMA_H_
|
|
|
|
// C++ Exception Specification ignored
|
|
#pragma warning(disable:4290)
|
|
|
|
#endif // _IASPRAGMA_H_
|