mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-23 17:38:20 +01:00
34 lines
547 B
C++
34 lines
547 B
C++
/* version.h - holds Hoedown's version */
|
|
|
|
#ifndef HOEDOWN_VERSION_H
|
|
#define HOEDOWN_VERSION_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/*************
|
|
* CONSTANTS *
|
|
*************/
|
|
|
|
#define HOEDOWN_VERSION "3.0.7"
|
|
#define HOEDOWN_VERSION_MAJOR 3
|
|
#define HOEDOWN_VERSION_MINOR 0
|
|
#define HOEDOWN_VERSION_REVISION 7
|
|
|
|
|
|
/*************
|
|
* FUNCTIONS *
|
|
*************/
|
|
|
|
/* hoedown_version: retrieve Hoedown's version numbers */
|
|
void hoedown_version(int *major, int *minor, int *revision);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /** HOEDOWN_VERSION_H **/
|