- My resource files are incorrect. Here's an example...
Resource.h
{
#define IDB_WALKLEFT 2000
//Rest of images
}
Resource.rc
{
#include "Resource.h"
IDB_WALKLEFT BITMAP "WalkLeft.gif"
//Rest of images
}
And I don't completely understand BitBlt(). The book I bought to learn about Windows programming (Sam's Teach Yourself Game Programming In 24 Hours) doesn't tell you how it works. It only shows you one way to use it. Could someone tell me if my resource files are wrong and what BitBlt() does and how to use it?
Thanks
Fuzake

: Thanks, man.
