converted C++ comments using script

This commit is contained in:
skarg
2013-03-13 22:13:28 +00:00
parent 0c8f51f9fb
commit 11897368d2
13 changed files with 130 additions and 130 deletions
+6 -6
View File
@@ -47,10 +47,10 @@ typedef struct _message {
MSGTYPE type;
MSGSUBTYPE subtype;
void *data;
// add timestamp
/* add timestamp */
} BACMSG;
// specific message type data structures
/* specific message type data structures */
typedef struct _msg_data {
BACNET_ADDRESS dest;
BACNET_ADDRESS src;
@@ -61,12 +61,12 @@ typedef struct _msg_data {
MSGBOX_ID create_msgbox();
// returns sent byte count
/* returns sent byte count */
bool send_to_msgbox(
MSGBOX_ID dest,
BACMSG *msg);
// returns received message
/* returns received message */
BACMSG* recv_from_msgbox(
MSGBOX_ID src,
BACMSG *msg);
@@ -74,11 +74,11 @@ BACMSG* recv_from_msgbox(
void del_msgbox(
MSGBOX_ID msgboxid);
// free message data structure
/* free message data structure */
void free_data(
MSG_DATA *data);
// check message reference counter and delete data if needed
/* check message reference counter and delete data if needed */
void check_data(
MSG_DATA *data);