9f17d59e
陈明泉
no message
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef __ZMF_H__
#define __ZMF_H__
#define __ZMF_API__ 2
#define __ZMF_VERSION__ "f92597b(160426)"
#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"
#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 */
#endif /* __ZMF_H__ */
|