4ef795558eae60f2a296018b95edec938e1eb28e
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/msg.h  1) /*
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/msg.h  2)  * EtherPix library
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/msg.h  3)  *
Stefan Schuermans update copyright year

Stefan Schuermans authored 7 years ago

include/etherpix/msg.h  4)  * Copyright 2010-2017 Stefan Schuermans <stefan schuermans info>
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/msg.h  5)  *
include/flexipix/msg.h  6)  * This program is free software: you can redistribute it and/or modify
include/flexipix/msg.h  7)  * it under the terms of the GNU General Public License as published by
include/flexipix/msg.h  8)  * the Free Software Foundation, version 3 of the License.
include/flexipix/msg.h  9)  *
include/flexipix/msg.h 10)  *
include/flexipix/msg.h 11)  * This program is distributed in the hope that it will be useful,
include/flexipix/msg.h 12)  * but WITHOUT ANY WARRANTY; without even the implied warranty of
include/flexipix/msg.h 13)  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
include/flexipix/msg.h 14)  * GNU General Public License for more details.
include/flexipix/msg.h 15)  *
include/flexipix/msg.h 16)  * You should have received a copy of the GNU Lesser General Public License
include/flexipix/msg.h 17)  * along with this program. If not, see <http://www.gnu.org/licenses/>.
include/flexipix/msg.h 18)  */
include/flexipix/msg.h 19) 
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/msg.h 20) #ifndef ETP_INC_MSG_H
include/etherpix/msg.h 21) #define ETP_INC_MSG_H
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/msg.h 22) 
include/flexipix/msg.h 23) /** message type */
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/msg.h 24) typedef enum etp_msg_type_s {
include/etherpix/msg.h 25)   etp_msg_type_err, /**< error message */
include/etherpix/msg.h 26)   etp_msg_type_warn, /**< warning message */
include/etherpix/msg.h 27)   etp_msg_type_info, /**< information message */
include/etherpix/msg.h 28) } etp_msg_type_t;
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/msg.h 29) 
include/flexipix/msg.h 30) /**
include/flexipix/msg.h 31)  * \brief type for message callback function
include/flexipix/msg.h 32)  *
include/flexipix/msg.h 33)  * \param[in] p_ctx user context
include/flexipix/msg.h 34)  * \param[in] type message type
include/flexipix/msg.h 35)  * \param[in] sz_fmt format string
include/flexipix/msg.h 36)  * \param[in] ... arguments for format string
include/flexipix/msg.h 37)  */
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/msg.h 38) typedef void (*etp_msg_func_p_t)(void *p_ctx, etp_msg_type_t type,
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/msg.h 39)                                  const char *sz_fmt, ...)
include/flexipix/msg.h 40) #ifdef __GNUC__
include/flexipix/msg.h 41)                               __attribute__ ((format (printf, 3, 4)))
include/flexipix/msg.h 42) #endif
include/flexipix/msg.h 43)                                ;
include/flexipix/msg.h 44) 
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/msg.h 45) #endif /* #ifndef ETP_INC_MSG_H */