Decoupled the demo handler from the demo object for ReinitializeDevice service.

This commit is contained in:
skarg
2010-02-13 13:38:00 +00:00
parent c8d959b3e3
commit 6c1b5b7e68
4 changed files with 73 additions and 16 deletions
+12
View File
@@ -37,6 +37,18 @@
#include <stdint.h>
#include <stdbool.h>
typedef struct BACnet_Reinitialize_Device_Data {
BACNET_REINITIALIZED_STATE state;
BACNET_CHARACTER_STRING password;
BACNET_ERROR_CLASS error_class;
BACNET_ERROR_CODE error_code;
} BACNET_REINITIALIZE_DEVICE_DATA;
typedef bool (
*reinitialize_device_function) (
BACNET_REINITIALIZE_DEVICE_DATA *rd_data);
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */