Differences From Artifact [e83f27146f]:
- File window.c — part of check-in [ecb3fee8fc] at 2001-04-16 16:29:12 on branch trunk — Put back Robert de Bath's second level of bell overload tracking. It had a useful purpose: when primary overload handling is disabled, it prevents MessageBeep calls overloading the program, because they don't cancel each other like async PlaySounds do. (user: simon size: 77558)
To Artifact [9c08098b81]:
- File window.c — part of check-in [382c2cdb71] at 2001-04-16 16:33:18 on branch trunk — Include <mmsystem.h> and winmm.lib for PlaySound. (user: simon size: 77580)
1 2 3 4 5 6 7 8 9 10 | #include <windows.h> #include <imm.h> #include <commctrl.h> #ifndef AUTO_WINSOCK #ifdef WINSOCK_TWO #include <winsock2.h> #else #include <winsock.h> #endif #endif | > | 1 2 3 4 5 6 7 8 9 10 11 | #include <windows.h> #include <imm.h> #include <commctrl.h> #include <mmsystem.h> #ifndef AUTO_WINSOCK #ifdef WINSOCK_TWO #include <winsock2.h> #else #include <winsock.h> #endif #endif |
| ︙ | ︙ |