Lines: 17 X-Admin: news AT aol DOT com From: lproche AT aol DOT com (Lproche) Newsgroups: comp.os.msdos.djgpp Date: 09 Jun 2001 22:09:04 GMT Organization: AOL, http://www.aol.co.uk Subject: Importing a lib file Message-ID: <20010609180904.24681.00000097@ng-mg1.aol.com> To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com I have a library which I want to use which has files aw.h, aw.lib and aw.dll associated with it. My source file compiles o.k. but when I build none of the functions can be found. I have tried everything I can think of so that DJGPP can find the files. What should I be doing? Sample program: #include "aw.h" #include int main(void) { int build; aw_init(AW_BUILD); return 0; }