Pls help me...
The book you have obviously assumes that you're using Microsoft Visual C++,
since WINMM.LIB is a VC++ import library. It contains imports for the
functions from "multimedia API".
You don't need WINMM.LIB with Borland C++. BC++ uses a different import
library, IMPORT32.LIB, that contains imports for pretty much the entire
Win32 API, including the multimedia functions (although it's missing a few
functions that have been added since 5.0 was released, but you most likely
won't need them).
The IDE links every Win32 program with IMPORT32.LIB by default. You don't
need to do anything special to build multimedia programs with Borland C++.
I suggest you just try to compile and link your program. If you get
specific link errors that you can't figure out, post here again (preferably
with an example of the exact error message you're getting).
--
Regards,
Matt Arnold
Professional Music Products
Mark of the Unicorn, Inc.
http://www.motu.com
To obtain my real address, please replace "biteme" with "motu". My use of a
fake address is an anti-spam tactic. Sorry for the inconvenience.
Matt A. wrote in message <86u19m$25...@bornews.borland.com>...