Eliminate the build error in bacepics when PRINT_ENABLED = 0.

Still lots of warnings in bacepics, but I don't see an issue with that, for an application whose whole point is to print output.
This commit is contained in:
tbrennan3
2010-06-18 20:40:43 +00:00
parent 987e28d515
commit 79436d1ae0
+3 -2
View File
@@ -189,8 +189,9 @@ extern "C" {
BACNET_APPLICATION_DATA_VALUE * value,
BACNET_PROPERTY_ID property);
#else
#define bacapp_parse_application_data(x,y,z) {(void)x;(void)y;(void)z;}
#define bacapp_print_value(x,y,z) {(void)x;(void)y;(void)z;}
/* Provide harmless return values */
#define bacapp_parse_application_data(x,y,z) false
#define bacapp_print_value(x,y,z) false
#endif
#ifdef TEST