65.9K
CodeProject is changing. Read more.
Home

Playing Cards DLL

starIcon
emptyStarIcon
starIcon
emptyStarIconemptyStarIconemptyStarIcon

1.21/5 (18 votes)

Aug 10, 2003

viewsIcon

106842

downloadIcon

1285

A DLL which includes playing cards as bitmpap resources which a developer can use in his/her application

Using cards.dll in an MFC application

 

 

 

 

 

 

 

Introduction

The Cards.dll includes bitmaps of playing cards as resources. It can be useful for developing card games.

Using the code

There was actually no coding involved in producing the DLL, as a matter of fact, it is just a convenient way of storing a large number of bitmaps that could be used in several programs. The code section below is an example of how to load a bitmap from Cards.dll.

//INCLUDE THE CARDS.h FILE FOUND IN THE ZIP CODE TO USE THE DEFINES, 
//OTHERWISE YOU CAN USE THE RESOURCE NUMBERS, AS EXPLAINED IN THE .H 
//FILE

#include "Cards.h"

//LOAD THE DLL

HMODULE <code>hModule = LoadLibrary("Path\\To\\Cards.dll"); 

//LOAD THE BITMAP
HBITMAP hBitmpap = 
        LoadBitmap(hModule,MAKEINTRESOURCE(IDB_H01))); 
//IDB_H01 IS THE ACE OF HEARTS, WHICH CORRESPONDS TO 4001

//FREE THE DLL
FreeLibrary(hModule);

//FOR MFC, IT IS RECOMMENDED TO USE 
//AfxLoadLibrary(...) and AfxFreeLibrary (...) 

History

This is my first update. Suggestions are well accepted!