Jul 04, 2007 11:22
I don't usually do these things, but since I'm sitting at my desk surrounded by computer text-book I thought this could be entertaining.
1. Grab the nearest book.
2. Open the book to page 123.
3. Find the fifth sentence.
4. Post the text of the next 4-7 sentences on your LJ along with these instructions.
5. Don't you dare dig for that "cool" or "intellectual" book in your closet! I know you were thinking about it! Just pick up whatever is closest (unless it's too troublesome to reach and is really heavy. Then go back to step 1).
Book: Beginning Game Programming by Michael Morrison
If you aren't familiar with altering linker settings for your compiler, just take a look at the compiler documentation and find out how to add additional libraries to a project: it typically involves simply entering the name of the library, msimg32.lib in this case, in a project settings window. Or, if you happen to be using Microsoft Visual Studio, you can follow these steps:
1. Open the project in Visual Studio (Visual C++).
2. Right-click on the project's folder in Solution Explorer and click Properties in the pop-up menu.
3. Click the Linker folder in the left pane of the properties window and then click Input.
4. Click next to Additional Dependencies in the right pane and type msimg32.lib.
5. Click the OK button to accept the changes to the project.