update readme
[rofl0r-oopoker.git] / pokereval2.h
blob5aa199b21a3e0d2ecb46c0f8fed89aae44a10db1
1 /*
2 This code is produced by mykey1961 and ported to C by pokercurious from the pokerai.org forums.
4 Cleaned up a bit, made work with g++ compiler, and placed two .c files in one .cpp file for OOPoker.
5 */
8 #include <stdint.h>
10 namespace PokerEval2
13 typedef uint64_t HandMask;
15 extern HandMask HandMasksTable[52];
17 typedef unsigned int HandVal;
19 void InitializeHandRankingTables(void);
20 extern HandVal RankHand(HandMask hand);