33 lines
985 B
C
33 lines
985 B
C
|
|
/**************************************************************************************
|
||
|
|
|
||
|
|
Copyright (c) Hilscher Gesellschaft fuer Systemautomation mbH. All Rights Reserved.
|
||
|
|
|
||
|
|
***************************************************************************************
|
||
|
|
|
||
|
|
$Id: OS_Includes.h 6603 2014-10-02 14:57:53Z stephans $:
|
||
|
|
|
||
|
|
Description:
|
||
|
|
Headerfile for specific target system includes, data types and definitions
|
||
|
|
|
||
|
|
Changes:
|
||
|
|
Date Description
|
||
|
|
-----------------------------------------------------------------------------------
|
||
|
|
2006-08-08 initial version (special OS dependencies must be added)
|
||
|
|
|
||
|
|
**************************************************************************************/
|
||
|
|
|
||
|
|
#ifndef __OS_INCLUDES__H
|
||
|
|
#define __OS_INCLUDES__H
|
||
|
|
|
||
|
|
#error "Insert needed Target system definitions, data types and header files here"
|
||
|
|
/*
|
||
|
|
#define APIENTRY
|
||
|
|
|
||
|
|
#ifndef NULL
|
||
|
|
#define NULL 0
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#define UNREFERENCED_PARAMETER(a) (a=a)
|
||
|
|
*/
|
||
|
|
#endif /* __OS_INCLUDES__H */
|