]> sigrok.org Git - sigrok-firmware-fx2lafw.git/blobdiff - include/gpif-acquisition.h
GPL headers: Use correct project name.
[sigrok-firmware-fx2lafw.git] / include / gpif-acquisition.h
index d13273c3f7e5838a0b06488444f1351d1345861b..0b1f964ec548110250643b8bf7f5dd98de97ed1f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the fx2lafw project.
+ * This file is part of the sigrok-firmware-fx2lafw project.
  *
  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
  *
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+#ifndef FX2LAFW_INCLUDE_GPIF_ACQUISITION_H
+#define FX2LAFW_INCLUDE_GPIF_ACQUISITION_H
+
+#include <stdbool.h>
 #include <command.h>
 
 void gpif_init_la(void);
-
-void gpif_acquisition_start(const struct cmd_start_acquisition *cmd);
-
+bool gpif_acquisition_start(const struct cmd_start_acquisition *cmd);
 void gpif_poll(void);
+
+#endif