diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-20 10:02:21 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-20 10:02:21 (GMT) |
commit | e79af273e8e7a55554e4d9cd5d512d45776ad68b (patch) | |
tree | 03a69e4d7c4fffaaf90775df8fe6ad230af21ae0 /PC | |
parent | 121b6eb018a839bfaf6af22ceb1a9793e62428df (diff) | |
download | cpython-e79af273e8e7a55554e4d9cd5d512d45776ad68b.zip cpython-e79af273e8e7a55554e4d9cd5d512d45776ad68b.tar.gz cpython-e79af273e8e7a55554e4d9cd5d512d45776ad68b.tar.bz2 |
Flesh out PlaySound() docs enough so that SND_ALIAS isn't hopelessly confusing.
If someone knows how to turn the new table of guaranteed-registered system
sounds into a LaTeX table, be my guest.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/winsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/winsound.c b/PC/winsound.c index b3b1bae..e182db5 100644 --- a/PC/winsound.c +++ b/PC/winsound.c @@ -59,7 +59,7 @@ static char sound_beep_doc[] = static char sound_module_doc[] = "PlaySound(sound, flags) - play a sound\n" "SND_FILENAME - sound is a wav file name\n" -"SND_ALIAS - sound is a control panel sound association name\n" +"SND_ALIAS - sound is a registry sound association name\n" "SND_LOOP - Play the sound repeatedly; must also specify SND_ASYNC\n" "SND_MEMORY - sound is a memory image of a wav file\n" "SND_PURGE - stop all instances of the specified sound\n" |