From 758894f8f04d4b4faed3fca4835b7f79e35c9431 Mon Sep 17 00:00:00 2001 From: skarg Date: Sun, 15 May 2005 11:51:03 +0000 Subject: [PATCH] added function prototype --- bacnet-stack/ao.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bacnet-stack/ao.h b/bacnet-stack/ao.h index c7e6f64c..ace0514f 100644 --- a/bacnet-stack/ao.h +++ b/bacnet-stack/ao.h @@ -28,6 +28,8 @@ #include #include #include "bacdef.h" +#include "bacerror.h" +#include "wp.h" bool Analog_Output_Valid_Instance(uint32_t object_instance); unsigned Analog_Output_Count(void); @@ -39,6 +41,11 @@ int Analog_Output_Encode_Property_APDU( BACNET_PROPERTY_ID property, int32_t array_index); +bool Analog_Output_Write_Property( + BACNET_WRITE_PROPERTY_DATA *wp_data, + BACNET_ERROR_CLASS *error_class, + BACNET_ERROR_CODE *error_code); + #ifdef TEST #include "ctest.h" void testAnalogOutput(Test * pTest);