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.
26 lines
436 B
26 lines
436 B
9 years ago
|
#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.
|
||
|
*/
|
||
|
|
||
9 years ago
|
#define SBMP_VER "1.3"
|
||
|
|
||
9 years ago
|
#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 */
|