43 lines
966 B
C
43 lines
966 B
C
/*
|
|
************************************************************************
|
|
**
|
|
** Copyright (c) 2009..2010 by
|
|
** Core|Vision B.V.
|
|
** Cereslaan 10b
|
|
** 5384 VT Heesch
|
|
** The Netherlands
|
|
**
|
|
** All Rights Reserved
|
|
**
|
|
************************************************************************
|
|
*/
|
|
/*
|
|
************************************************************************
|
|
**
|
|
** Project name: Dual Inventive: Utility Library
|
|
** Filename: di-errno.h
|
|
** Author: Jack Weeland
|
|
** Date: November 3, 2009
|
|
** File version: 1.00 of November 3, 2009
|
|
**
|
|
************************************************************************
|
|
*/
|
|
/*
|
|
************************************************************************
|
|
**
|
|
** Errors - definitions
|
|
**
|
|
************************************************************************
|
|
*/
|
|
|
|
#ifndef __DI_ERRNO_H
|
|
#define __DI_ERRNO_H
|
|
|
|
// error code
|
|
int di_errno();
|
|
|
|
// error message
|
|
const char *di_errorstr(int error);
|
|
|
|
#endif /* __DI_ERRNO_H */
|