Sound, beep, delay, nosound etc missing in dos.h?

Discussion in 'C++' started by skshoyeb, Aug 28, 2010.

  1. skshoyeb

    skshoyeb New Member

    Joined:
    Aug 28, 2010
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    Let me tell u, that I AM A NEWBIE to C++..

    I want to use sound in C++ (I use Borland Turbo C++ 4.5 because, this is used in our college..)

    To use sound files, I browsed net and came to know that we may play sound using the
    sound(), delay(), nosound(), in the dos.h directory.

    But when i execute this program:
    #include "dos.h"
    int main()
    {
    sound(100); delay(5000); nosound(); return(0);
    }

    But it gives three errors:

    Compiling NONAME00.CPP:
    Error NONAME00.CPP 5: Call to undefined function 'sound' in function main()
    Error NONAME00.CPP 5: Call to undefined function 'delay' in function main()
    Error NONAME00.CPP 5: Call to undefined function 'nosound' in function main()

    ..
    So I checked the dos.h directory fns (In HELP )and found there are none of the three fns in the list.. Not even the beep fn is available..

    Please help me!!!!!!!!
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice