20 lines
569 B
C
20 lines
569 B
C
/************************************************************************/
|
|
/*
|
|
*
|
|
* Filename : MILERROR.H
|
|
* Revision : 10.60.0776
|
|
* Content : This file contains the defines for error messages
|
|
*
|
|
* Copyright © Matrox Electronic Systems Ltd., 1992-2023.
|
|
* All Rights Reserved
|
|
*************************************************************************/
|
|
|
|
#ifndef __MILERROR_H
|
|
#define __MILERROR_H
|
|
|
|
#define M_ERROR_FILE_NOT_FOUND 1 // The file was not found.
|
|
#define M_ERROR_NOT_ENOUGH_MEMORY 2 // There is not enough memory.
|
|
|
|
|
|
#endif // __MILERROR_H
|