Add initial NSIS file for building a win installer.
[pulseview.git] / datasnapshot.h
index f3bb3e2136475f3ba591306fb02b7d9704c24321..3bf12f9d70120e1a5c8a12f8ccd886615fadce63 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the PulseView project.
  *
  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
  *
@@ -32,10 +32,10 @@ public:
        uint64_t get_sample_count();
 
 protected:
-       void append_data(void *data, uint64_t length);
+       void append_data(void *data, uint64_t samples);
 
 protected:
        void *_data;
-       uint64_t _data_length;
+       uint64_t _sample_count;
        int _unit_size;
 };