blob: 070fe96dd500b49974f518e3d2a4c3f8cf3a1d83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*! @file format-edr.h */
#ifndef FORMAT_EDR_H
#define FORMAT_EDR_H
#include "emb-pattern.h"
#include "api-start.h"
#ifdef __cplusplus
extern "C" {
#endif
extern EMB_PRIVATE int EMB_CALL readEdr(EmbPattern* pattern, const char* fileName);
extern EMB_PRIVATE int EMB_CALL writeEdr(EmbPattern* pattern, const char* fileName);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#include "api-stop.h"
#endif /* FORMAT_EDR_H */
/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */
|