From 889752ef6e0aa01270e6cdd4349cb9e3e859cf82 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 30 Jul 2008 22:01:22 +0000 Subject: Fix type passed to ScalePoints functions (actually just an opaque pointer, aesthetic only). git-svn-id: http://svn.drobilla.net/lad/slv2@1316 a436a847-0d15-0410-975c-d299462d15a1 --- slv2/scalepoints.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'slv2') diff --git a/slv2/scalepoints.h b/slv2/scalepoints.h index 88e08b4..c8fee6a 100644 --- a/slv2/scalepoints.h +++ b/slv2/scalepoints.h @@ -35,22 +35,22 @@ extern "C" { */ -/** Allocate a new, empty SLV2Values +/** Allocate a new, empty SLV2ScalePoints */ -SLV2Values +SLV2ScalePoints slv2_scale_points_new(); -/** Free an SLV2Values. +/** Free an SLV2ScalePoints. */ void -slv2_scale_points_free(SLV2Values); +slv2_scale_points_free(SLV2ScalePoints); /** Get the number of scale points in a collection. */ unsigned -slv2_scale_points_size(SLV2Values points); +slv2_scale_points_size(SLV2ScalePoints points); /** Get the scale point at the given index in a collection. -- cgit v1.2.1