Corrected function prototypes.

This commit is contained in:
skarg
2011-10-03 14:00:59 +00:00
parent 2ffdc9bc53
commit 2356384497
+2 -2
View File
@@ -104,13 +104,13 @@ struct sockaddr_in; /* Defined elsewhere, needed here. */
/* Returns the last BVLL Result we received, either as the result of a BBMD /* Returns the last BVLL Result we received, either as the result of a BBMD
* request we sent, or (if not a BBMD or Client), from trying to register * request we sent, or (if not a BBMD or Client), from trying to register
* as a foreign device. */ * as a foreign device. */
BACNET_BVLC_RESULT bvlc_get_last_result(); BACNET_BVLC_RESULT bvlc_get_last_result(void);
/* Returns the current BVLL Function Code we are processing. /* Returns the current BVLL Function Code we are processing.
* We have to store this higher layer code for when the lower layers * We have to store this higher layer code for when the lower layers
* need to know what it is, especially to differentiate between * need to know what it is, especially to differentiate between
* BVLC_ORIGINAL_UNICAST_NPDU and BVLC_ORIGINAL_BROADCAST_NPDU. */ * BVLC_ORIGINAL_UNICAST_NPDU and BVLC_ORIGINAL_BROADCAST_NPDU. */
BACNET_BVLC_FUNCTION bvlc_get_function_code(); BACNET_BVLC_FUNCTION bvlc_get_function_code(void);
#ifdef __cplusplus #ifdef __cplusplus
} }