#include <revolution/hbm.h>
typedef enum
{
HBMSE_HOME_BUTTON = 0,
HBMSE_RETURN_APP,
HBMSE_GOTO_MENU,
HBMSE_RESET_APP,
HBMSE_FOCUS,
HBMSE_SELECT,
HBMSE_CANCEL,
HBMSE_OPEN_CONTROLLER,
HBMSE_CLOSE_CONTROLLER,
HBMSE_VOLUME_PLUS,
HBMSE_VOLUME_MINUS,//10
HBMSE_VOLUME_PLUS_LIMIT,
HBMSE_VOLUME_MINUS_LIMIT,
HBMSE_NOTHING_DONE,
HBMSE_VIBE_ON,
HBMSE_VIBE_OFF,
HBMSE_START_CONNECT_WINDOW,
HBMSE_CONNECTED,
HBMSE_CONNECTED2,
HBMSE_CONNECTED3,
HBMSE_CONNECTED4,//20
HBMSE_END_CONNECT_WINDOW
#ifdef USE_FOR_MANUAL
,
HBMSE_MANUAL_OPEN, // for manual
HBMSE_MANUAL_FOCUS,
HBMSE_MANUAL_SELECT,
HBMSE_MANUAL_SCROLL,
HBMSE_MANUAL_CANCEL,
HBMSE_MANUAL_RETURN
#endif
};
| HBMSE_HOME_BUTTON | Plays the sound effect used when HOME is pressed and the HOME Menu is displayed. |
|---|---|
| HBMSE_RETURN_APP | Plays the sound effect used when closing the HOME Menu and returning to the application. |
| HBMSE_GOTO_MENU | Plays the sound effect used when Go to System Menu is clicked. |
| HBMSE_RESET_APP | Plays the sound effect used when Reset is clicked. |
| HBMSE_FOCUS | Plays the sound effect used when the focus is on a button on the HOME Menu. |
| HBMSE_SELECT | Plays the sound effect used when a button on the HOME Menu is clicked. |
| HBMSE_CANCEL | Plays the sound effect used when No is clicked in a dialog box. |
| HBMSE_OPEN_CONTROLLER | Plays the sound effect used when displaying the Wii Remote Setup Screen (Screen 2). |
| HBMSE_CLOSE_CONTROLLER | Plays the sound effect used when returning from the Wii Remote Setup Screen (Screen 2). |
| HBMSE_VOLUME_PLUS | Plays the sound effect used when the + Button on the Wii Remote is pressed or when the + Button for volume is clicked. |
| HBMSE_VOLUME_MINUS | Plays the sound effect used when the - Button on the Wii Remote is pressed or when the - Button for volume is clicked. |
| HBMSE_VOLUME_PLUS_LIMIT | Plays the sound effect used when maximum volume is already set and the + Button on the Wii Remote is pressed, or when the + Button for volume is clicked. |
| HBMSE_VOLUME_MINUS_LIMIT | Plays the sound effect used when minimum volume is already set and the - Button on the Wii Remote is pressed, or when the - Button for volume is clicked. |
| HBMSE_NOTHING_DONE | Plays the sound effect used when a button on the Wii Remote is pressed without focusing on a button on the screen. |
| HBMSE_VIBE_ON | Plays the sound effect used when turning on the rumble feature. |
| HBMSE_VIBE_OFF | Plays the sound effect used when turning off the rumble feature. |
| HBMSE_START_CONNECT_WINDOW | Plays the sound effect used when Reconnect Remote is clicked. |
| HBMSE_CONNECTED | Plays the sound effect used when pairing is accepted, and the Player 1 Remote is connected. |
| HBMSE_CONNECTED2 | Plays the sound effect used when pairing is accepted, and the Player 2 Remote is connected. |
| HBMSE_CONNECTED3 | Plays the sound effect used when pairing is accepted, and the Player 3 Remote is connected. |
| HBMSE_CONNECTED4 | Plays the sound effect used when pairing is accepted, and the Player 4 Remote is connected. |
| HBMSE_END_CONNECT_WINDOW | Plays the sound effect used when closing applications for pairing. |
| HBMSE_MANUAL_OPEN | Plays the manual open sound effect when the button to display the manual is clicked. |
| HBMSE_MANUAL_FOCUS | Plays the sound effect used when the focus is on a button while the manual is displayed. |
| HBMSE_MANUAL_SELECT | Plays the sound effect used when clicking a button (except for the button to return to the HOME Menu) while the manual is displayed. |
| HBMSE_MANUAL_SCROLL | Plays the sound effect for scrolling in the manual display. |
| HBMSE_MANUAL_CANCEL | Plays the sound effect used when the button for returning to the HOME Menu is clicked. |
| HBMSE_MANUAL_RETURN | Plays the sound effect used when the HOME Button is pressed to return to the application from the manual. |
This enumerator takes a value indicating the sound effect type and is passed in an argument of the callback function for the sound.
HBMSE_MANUAL_* is used as an argument for calling HBMPlayManualSound() to play the sound effect for the manual displayed in the HOME Menu by the application.
CONFIDENTIAL