#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 */