From c46faa557b4f6c12cd760b2999e5f8c5132d3e1c Mon Sep 17 00:00:00 2001 From: skarg Date: Sat, 2 Apr 2005 11:11:29 +0000 Subject: [PATCH] corrected compile errors --- bacnet-stack/bacerror.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bacnet-stack/bacerror.h b/bacnet-stack/bacerror.h index 575191a4..1684e09d 100644 --- a/bacnet-stack/bacerror.h +++ b/bacnet-stack/bacerror.h @@ -36,13 +36,14 @@ #include #include +#include "bacenum.h" int bacerror_encode_apdu( uint8_t *apdu, uint8_t invoke_id, BACNET_CONFIRMED_SERVICE service, BACNET_ERROR_CLASS error_class, - BACNET_ERROR_CODE error_code) + BACNET_ERROR_CODE error_code); int bacerror_decode_service_request( uint8_t *apdu, @@ -61,6 +62,7 @@ int bacerror_decode_apdu( BACNET_ERROR_CODE *error_code); #ifdef TEST +#include "ctest.h" void testBACError(Test * pTest); #endif