#ifndef MAIN_H_INCLUDED #define MAIN_H_INCLUDED typedef int SoundBank; typedef int Program; typedef int Voice; typedef int Song; bool parseText( ) ; Voice play( int ) ; void initSounds( ) ; void stopSounds( ) ; void initPad( ) ; unsigned long getPad( ) ; #define TEXT_ADDR 0x800A0000 #define VH_ADDR 0x800B0000 #define VB_ADDR 0x800D0000 #define SCREEN_WIDTH (320) #define SCREEN_HEIGHT (240) #define MAX_NAMES 10 #define MAX_NAME_LENGTH 100 #endif //MAIN_H_INCLUDED