remove more magic constants

This commit is contained in:
Glenn Maynard
2002-11-03 05:02:48 +00:00
parent c70c6baf30
commit 64499909d5
2 changed files with 18 additions and 11 deletions
+3 -1
View File
@@ -3,11 +3,13 @@
#include "Song.h"
#include "Notes.h"
#include "NoteTypes.h"
class NotesWriterDWI {
char NotesToDWIChar( bool bCol1, bool bCol2, bool bCol3, bool bCol4, bool bCol5, bool bCol6 );
char NotesToDWIChar( bool bCol1, bool bCol2, bool bCol3, bool bCol4 );
CString NotesToDWIString( char cNoteCol1, char cNoteCol2, char cNoteCol3, char cNoteCol4, char cNoteCol5, char cNoteCol6 );
CString NotesToDWIString( TapNote cNoteCol1, TapNote cNoteCol2, TapNote cNoteCol3, TapNote cNoteCol4, TapNote cNoteCol5, TapNote cNoteCol6 );
CString NotesToDWIString( TapNote cNoteCol1, TapNote cNoteCol2, TapNote cNoteCol3, TapNote cNoteCol4 );
CString NotesToDWIString( char cNoteCol1, char cNoteCol2, char cNoteCol3, char cNoteCol4 );
void WriteDWINotesField( FILE* fp, const Notes &out, int start );
bool WriteDWINotesTag( FILE* fp, const Notes &out );