The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => Miscellaneous Projects => Topic started by: elefer on November 09, 2006, 08:21:21 AM

Title: Please Help about assembly libraries
Post by: elefer on November 09, 2006, 08:21:21 AM
hi !
I want to learn how I create library in assembly Please help me it is homework
Title: Re: Please Help about assembly libraries
Post by: Draakie on November 09, 2006, 01:56:40 PM
Dear elefer,

Sorry, but forum rules prohibit us from helping you directly. But please be aware
that the downloadable links [top right] provided in this forum will give you so
much information concerning this topic - you'll be very sorry you asked. :eek

Good luck

Draakie
Title: Re: Please Help about assembly libraries
Post by: ToutEnMasm on November 09, 2006, 02:20:32 PM
Hello,
I will give you a top secret information,in the masm32 package there is a full set of examples in \masm32\M32LIB\
                        :bdg                   ToutEnMasm
Title: Re: Please Help about assembly libraries
Post by: ragdog on November 09, 2006, 06:11:52 PM
a very secret information! :lol
Title: Re: Please Help about assembly libraries
Post by: PBrennick on November 09, 2006, 07:27:47 PM
Look closely at the make.bat file, that is where you will find your answer. It is helpful to understand what .rsp (response) files are and how they can help you. Lastly, do not forget the include file. In there you need to have a prototype for every function you will use in the library.

If you decide to create a DLL from the library, do not forget to created a .def file.

Paul