You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
436 B
25 lines
436 B
#ifndef SBMP_H
|
|
#define SBMP_H
|
|
|
|
/**
|
|
* This is the main SBMP header file.
|
|
*
|
|
* This is the only header file you should need to
|
|
* #include in your application code.
|
|
*/
|
|
|
|
#define SBMP_VER "1.3"
|
|
|
|
#include "sbmp_config.h"
|
|
|
|
// Common utils & the frame parser
|
|
#include "sbmp_logging.h"
|
|
#include "sbmp_checksum.h"
|
|
|
|
#include "sbmp_frame.h"
|
|
|
|
// Datagram & session layer
|
|
#include "sbmp_datagram.h"
|
|
#include "sbmp_session.h"
|
|
|
|
#endif /* SBMP_H */
|
|
|