53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
/*
|
|
************************************************************************
|
|
**
|
|
** Copyright (c) 2007..2010 by
|
|
** Core|Vision B.V.
|
|
** Cereslaan 10b
|
|
** 5384 VT Heesch
|
|
** The Netherlands
|
|
**
|
|
** All Rights Reserved
|
|
**
|
|
************************************************************************
|
|
*/
|
|
/*
|
|
************************************************************************
|
|
**
|
|
** Project name: Dual Inventive: Utility Library
|
|
** Filename: di-util.h
|
|
** Author: Jack Weeland
|
|
** Date: November 5, 2009
|
|
** File version: 1.00 of November 5, 2009
|
|
**
|
|
************************************************************************
|
|
*/
|
|
/*
|
|
************************************************************************
|
|
**
|
|
** Top include file
|
|
**
|
|
** Note that the low level funtionality is _not_ include (such as the
|
|
** list and I/O buffer functions; however, they are included by other
|
|
** files, m.n. "cp3000.h".
|
|
**
|
|
************************************************************************
|
|
*/
|
|
|
|
#ifndef __DI_UTIL_H
|
|
#define __DI_UTIL_H
|
|
|
|
// support functions
|
|
#include "config.h"
|
|
#include "debug.h"
|
|
#include "di-errno.h"
|
|
#include "util.h"
|
|
|
|
// database access
|
|
#include "database.h"
|
|
|
|
// high(er) level CP3000 handling
|
|
#include "cp3000.h"
|
|
|
|
#endif /* __DI_UTIL_H */
|