mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
23 lines
376 B
C
23 lines
376 B
C
/*
|
|
* event-post.h
|
|
* Header file for the event_post example
|
|
*
|
|
* Created on: 30 Mar 2010
|
|
* Author: George Oikonomou <oikonomou@users.sourceforge.net>
|
|
*/
|
|
|
|
#ifndef EVENT_POST_H_
|
|
#define EVENT_POST_H_
|
|
|
|
struct event_struct {
|
|
short s_val;
|
|
int i_val;
|
|
long l_val;
|
|
long long ll_val;
|
|
uint8_t u8_val;
|
|
uint16_t u16_val;
|
|
uint32_t u32_val;
|
|
};
|
|
|
|
#endif /* EVENT_POST_H_ */
|