ponytracker/sources/fichier/fichier.h

16 lines
498 B
C
Raw Normal View History

#ifndef _fichier_h
#define _fichier_h
#include <stdlib.h>
#include <stdio.h>
2014-05-21 21:12:56 +02:00
void creerProjet(char chemin[], Sample* smpl[], Instrument* inst[], Motif* liste, Motif* melodie[]);
2014-05-21 21:12:56 +02:00
void chargerProjet(char chemin[], Sample* smpl[], Instrument* inst[], Motif* liste, Motif* melodie[]);
2014-05-21 21:12:56 +02:00
void sauverProjet(char chemin[], Sample* smpl[], Instrument* inst[], Motif* liste, Motif* melodie[]);
2014-05-21 21:12:56 +02:00
void copierProjet(char chemin[], Sample* smpl[], Instrument* inst[], Motif* liste, Motif* melodie[]);
#endif