26 lines
522 B
C
26 lines
522 B
C
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// 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_
|