home *** CD-ROM | disk | FTP | other *** search
- #include <dconst.h>
-
- beep() { /* @0047 */
- #if (OS_TYPE==0) /* @0184 */
- #if ((OVL_TYPE==1)&&(RESIDENT!=1))
- Res_sound(440); /* @0047 */
- Res_delay(200); /* @0047 */
- #else
- sound(440); /* @0047 */
- delay(200); /* @0047 */
- #endif
- #else /* @0184 */
- sound(440); /* @0047 */
- sleep(1); /* @0184 */
- #endif /* @0184 */
- #if ((OVL_TYPE==1)&&(RESIDENT!=1))
- Res_nosound(); /* @0047 */
- #else
- nosound(); /* @0047 */
- #endif
- } /* @0047 */