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.
42 lines
848 B
42 lines
848 B
1 year ago
|
#ifndef __ZMF_H__
|
||
|
#define __ZMF_H__
|
||
|
|
||
|
#define __ZMF_API__ 2
|
||
|
#define __ZMF_VERSION__ "79ef632(190715)"
|
||
|
#define __ZMF_LOCAL_MODIFIED__ 0
|
||
|
|
||
|
#if __ZMF_LOCAL_MODIFIED__
|
||
|
#ifdef _WIN32
|
||
|
#pragma message ("Warning: Not all files has been commit to the repository.")
|
||
|
#else
|
||
|
#warning Not all files has been commit to the repository!
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#include "zmf_audio.h"
|
||
|
#include "zmf_video.h"
|
||
|
#include "zmf_sensor.h"
|
||
|
#include "zmf_codec.h"
|
||
|
#include "zmf_ext.h"
|
||
|
|
||
|
#if __GNUC__
|
||
|
#pragma GCC visibility push(default)
|
||
|
#endif
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/** @brief Get ZMF version string. */
|
||
|
const char* Zmf_GetVersion();
|
||
|
|
||
|
/** @brief Get ZMF API Level */
|
||
|
int Zmf_GetApiLevel();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* __cplusplus */
|
||
|
#if __GNUC__
|
||
|
#pragma GCC visibility pop
|
||
|
#endif
|
||
|
#endif /* __ZMF_H__ */
|