This commit is contained in:
flo 2017-02-26 21:58:37 +01:00
parent cf189355a9
commit 4b84b3853e
1 changed files with 7 additions and 5 deletions

View File

@ -1,6 +1,13 @@
#ifndef _SOUND4CALC_H
#define _SOUND4CALC_H
struct Wave
{
char* signal;
unsigned short length;
};
extern struct Note
{
struct Wave wave;
@ -8,11 +15,6 @@ extern struct Note
unsigned int freq;
} note;
struct Wave
{
char* signal;
unsigned short length;
};
void CallSequence();
void CallNote();