Changeset 286
- Timestamp:
- Aug 12, 2007, 1:03:51 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Media/SystemSounds.ab
r116 r286 2 2 Public 3 3 Static Function Asterisk() As SystemSound 4 Dim ret As SystemSound(SND_ALIAS_SYSTEMASTERISK) 5 Return ret 4 Return New SystemSound(SND_ALIAS_SYSTEMASTERISK) 6 5 End Function 7 6 Static Function Beep() As SystemSound 8 Dim ret As SystemSound(SND_ALIAS_SYSTEMDEFAULT) 9 Return ret 7 Return New SystemSound(SND_ALIAS_SYSTEMDEFAULT) 10 8 End Function 11 9 Static Function Exclamation() As SystemSound 12 Dim ret As SystemSound(SND_ALIAS_SYSTEMEXCLAMATION) 13 Return ret 10 Return New SystemSound(SND_ALIAS_SYSTEMEXCLAMATION) 14 11 End Function 15 12 Static Function Hand() As SystemSound 16 Dim ret As SystemSound(SND_ALIAS_SYSTEMHAND) 17 Return ret 13 Return New SystemSound(SND_ALIAS_SYSTEMHAND) 18 14 End Function 19 15 Static Function Question() As SystemSound 20 Dim ret As SystemSound(SND_ALIAS_SYSTEMQUESTION) 21 Return ret 16 Return New SystemSound(SND_ALIAS_SYSTEMQUESTION) 22 17 End Function 23 18
Note:
See TracChangeset
for help on using the changeset viewer.