fix signed/unsigned compiler warning
[ardour.git] / libs / audiographer / audiographer / types.h
index 558bab302f06d00ff98b12e5b38984c75b57e66c..4288dce0c6ad4f654af1edf5de02cc9d86383f42 100644 (file)
@@ -3,13 +3,17 @@
 
 #include <stdint.h>
 
+#include "audiographer/visibility.h"
+
 namespace AudioGrapher {
 
-typedef int64_t nframes_t;
+/* XXX: copied from libardour */       
+typedef int64_t framecnt_t;
+       
 typedef uint8_t ChannelCount;
 
 typedef float DefaultSampleType;
 
 } // namespace
 
-#endif // AUDIOGRAPHER_TYPES_H
\ No newline at end of file
+#endif // AUDIOGRAPHER_TYPES_H