Visual C++ 7.1Visual C++ 7.0Windows 2003Windows 2000Visual C++ 6.0Windows XPMFCIntermediateDevVisual StudioWindowsC++
Playing Cards DLL






1.21/5 (18 votes)
Aug 10, 2003

106842

1285
A DLL which includes playing cards as bitmpap resources which a developer can use in his/her 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 HBITMAPhBitmpap
= 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!