What is MultiMediaBase Lib?

Everything else that doesn't fall into one of the other PB categories.
Ralf
Enthusiast
Enthusiast
Posts: 203
Joined: Fri May 30, 2003 1:29 pm
Location: Germany

What is MultiMediaBase Lib?

Post by Ralf »

when compiling my project with asm output, i noticed a lib called MultiMediaBase (around 10 kb) will be added to my program!

What is this 10k MultiMediaBase for? (when will it be linked to the exe?)
Is there any way to leave this lib out of the exe?
traumatic
PureBasic Expert
PureBasic Expert
Posts: 1661
Joined: Sun Apr 27, 2003 4:41 pm
Location: Germany
Contact:

Re: What is MultiMediaBase Lib?

Post by traumatic »

Internal things required for the DirectX functions, such as PB_DirectX_Window.

Whenever you're using InitSprite(), InitMouse(), InitKeyboard() or InitSound()
(did I forget one?) the library is needed by PB and will be linked.
Good programmers don't comment their code. It was hard to write, should be hard to read.
Fred
Administrator
Administrator
Posts: 18162
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Post by Fred »

It contains shared functions for the multimedia (2D/3D games) commands, so you can't avoid it if you use one of the game related library.
Post Reply