subsurface/device.h
Boris Barbulovski ccb1c33d02 Put include guard to every header
* ensure include guard to every header
* comment endif guard block

Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2014-02-11 12:37:01 -08:00

18 lines
482 B
C

#ifndef DEVICE_H
#define DEVICE_H
#ifdef __cplusplus
#include "dive.h"
extern "C" {
#endif
extern struct divecomputer *fake_dc(struct divecomputer* dc);
extern void create_device_node(const char *model, uint32_t deviceid, const char *serial, const char *firmware, const char *nickname);
extern void call_for_each_dc(void *f, void (*callback)(void *, const char *, uint32_t,
const char *, const char *, const char *));
#ifdef __cplusplus
}
#endif
#endif // DEVICE_H