- Timestamp:
- Oct 17, 2005, 9:05:11 PM (20 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/syssound.h
r184 r300 37 37 * 38 38 ********************************************************************/ 39 40 /* Undocumented WinAlarm Values to reflect changes to sound settings right away */ 41 #define WA_TEST 997 42 #define WA_ENABLESOUNDS 998 43 #define WA_APPLYVOLUMETOALL 999 44 #define WA_FILECHANGED 1000 39 45 40 46 /* keys for accessing sounds in MMPM.INI */ -
trunk/src/helpers/syssound.c
r265 r300 380 380 // this is done by calling WinAlarm with 1000+index! 381 381 // sick stuff.. 382 WinAlarm(HWND_DESKTOP, usIndex+1000); // V0.9.6 (2000-10-16) [umoeller]382 WinAlarm(HWND_DESKTOP, WA_FILECHANGED + usIndex); // V0.9.6 (2000-10-16) [umoeller] 383 383 384 384 return brc; … … 701 701 // notify MMPM/2 of the change... see sndWriteSoundData 702 702 // V0.9.6 (2000-10-16) [umoeller] 703 WinAlarm(HWND_DESKTOP, usIndex+1000);703 WinAlarm(HWND_DESKTOP, WA_FILECHANGED + usIndex); 704 704 } 705 705 }
Note:
See TracChangeset
for help on using the changeset viewer.