28 lines
850 B
C
28 lines
850 B
C
/************************************************************************/
|
|
/*
|
|
*
|
|
* Filename : MILWARNING.H
|
|
* Revision : 10.60.0776
|
|
* Content : This file contains the defines for warning messages
|
|
*
|
|
* Copyright © Matrox Electronic Systems Ltd., 1992-2023.
|
|
* All Rights Reserved
|
|
*************************************************************************/
|
|
|
|
#ifndef __MILWARNING_H
|
|
#define __MILWARNING_H
|
|
|
|
#define M_WARNING_COMPENSATION 1
|
|
#define M_WARNING_DEPRECATION 2
|
|
#define M_WARNING_NON_PORTABLE_OBJECT 4
|
|
#define M_WARNING_RECOMMENDATION 8
|
|
#define M_WARNING_ASCII_USE 16
|
|
|
|
|
|
|
|
#define M_WARNING_ASCII_API 1 // Using ASCII in a function call that will be converted to Unicode
|
|
#define M_WARNING_DMIL_COMPENSATION 2 // A buffer has been compensated in a call via DMIL.
|
|
|
|
|
|
#endif // __MILWARNING_H
|