diff dmtimeline.c @ 350:834f3b686ad3

More work on timeline stuff.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 16 Oct 2012 01:18:03 +0300
parents f248defe7484
children 5eafdc396fa4
line wrap: on
line diff
--- a/dmtimeline.c	Tue Oct 16 01:13:36 2012 +0300
+++ b/dmtimeline.c	Tue Oct 16 01:18:03 2012 +0300
@@ -90,7 +90,7 @@
 }
 
 
-BOOL dmLoadFloatValue(DMResource *res, DMFloat *val)
+static BOOL dmLoadFloatValue(DMResource *res, DMFloat *val)
 {
     char tmp[DT_FLOAT_STORE_SIZE + 1];
     if (dmf_read_str(res, (Uint8 *) tmp, DT_FLOAT_STORE_SIZE) != DT_FLOAT_STORE_SIZE)
@@ -102,7 +102,7 @@
 }
 
 
-int dmLoadTimelinePoints(DMResource *res, DMTimelinePoints *points, int type)
+static int dmLoadTimelinePoints(DMResource *res, DMTimelinePoints *points, int type)
 {
     int point;
     Uint32 npoints;
@@ -172,7 +172,7 @@
 }
 
 
-int dmLoadTimelineEventParam(DMResource *res, DMTimelineEventParam *param)
+static int dmLoadTimelineEventParam(DMResource *res, DMTimelineEventParam *param)
 {
     int err;
     DMFTimelineEventParam hdr;
@@ -213,7 +213,7 @@
 }
 
 
-int dmLoadTimelineEvent(DMResource *res, DMTimelineEvent **pevent)
+static int dmLoadTimelineEvent(DMResource *res, DMTimelineEvent **pevent)
 {
     int param;
     DMFTimelineEvent hdr;
@@ -265,7 +265,7 @@
 }
 
 
-int dmLoadTimelineCurve(DMResource *res, DMTimelineCurve *curve)
+static int dmLoadTimelineCurve(DMResource *res, DMTimelineCurve *curve)
 {
     int err;
 
@@ -277,7 +277,7 @@
 }
 
 
-int dmLoadTimelineTrack(DMResource *res, DMTimelineTrack **ptrack)
+static int dmLoadTimelineTrack(DMResource *res, DMTimelineTrack **ptrack)
 {
     int event, err;
     DMFTimelineTrack hdr;
@@ -420,7 +420,7 @@
 }
 
 
-void dmFreePreparedEventGroup(DMPreparedEventGroup *group)
+static void dmFreePreparedEventGroup(DMPreparedEventGroup *group)
 {
     if (group != NULL)
     {