libembroidery-sys 0.1.2

Rust FFI bindings for libembroidery
Documentation
/*! @file format-xxx.h */
#ifndef FORMAT_XXX_H
#define FORMAT_XXX_H

#include "emb-pattern.h"

#include "api-start.h"
#ifdef __cplusplus
extern "C" {
#endif

extern EMB_PRIVATE int EMB_CALL readXxx(EmbPattern* pattern, const char* fileName);
extern EMB_PRIVATE int EMB_CALL writeXxx(EmbPattern* pattern, const char* fileName);

#ifdef __cplusplus
}
#endif /* __cplusplus */
#include "api-stop.h"

#endif /* FORMAT_XXX_H */

/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */