23 lines
350 B
C
23 lines
350 B
C
/*
|
|
* test_event_registry.h
|
|
*
|
|
* Created on: Nov 27, 2013
|
|
* Author: Andrey Belomutskiy, (c) 2012-2013
|
|
*/
|
|
|
|
#ifndef TEST_EVENT_REGISTRY_H_
|
|
#define TEST_EVENT_REGISTRY_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
void testEventRegistry(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* TEST_EVENT_REGISTRY_H_ */
|