You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
437 B
C
24 lines
437 B
C
![]()
11 years ago
|
/*
|
||
|
* libiec61850_common_api_includes.h
|
||
|
*/
|
||
|
|
||
|
#ifndef LIBIEC61850_COMMON_API_INCLUDES_H_
|
||
|
#define LIBIEC61850_COMMON_API_INCLUDES_H_
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#ifdef __GNUC__
|
||
|
#define ATTRIBUTE_PACKED __attribute__ ((__packed__))
|
||
|
#else
|
||
|
#define ATTRIBUTE_PACKED
|
||
|
#endif
|
||
|
|
||
![]()
11 years ago
|
#include "hal_time.h"
|
||
![]()
11 years ago
|
#include "mms_value.h"
|
||
|
|
||
|
#endif /* LIBIEC61850_COMMON_API_INCLUDES_H_ */
|