| 46 | |
| 47 | |
| 48 | int STDCALL CalcParPBN( |
| 49 | DdTableDealPBN tableDealPBN, |
| 50 | DdTableResults * tablep, |
| 51 | int vulnerable, |
| 52 | ParResults * presp) |
| 53 | { |
| 54 | int res; |
| 55 | DdTableDeal tableDeal; |
| 56 | int STDCALL CalcPar(DdTableDeal tableDeal, int vulnerable, |
| 57 | DdTableResults * tablep, ParResults * presp); |
| 58 | |
| 59 | if (convert_from_pbn(tableDealPBN.cards, tableDeal.cards) != 1) |
| 60 | return RETURN_PBN_FAULT; |
| 61 | |
| 62 | res = CalcPar(tableDeal, vulnerable, tablep, presp); |
| 63 | |
| 64 | return res; |
| 65 | } |
| 66 | |
| 67 | |
| 68 | int rawscore( |
nothing calls this directly
no test coverage detected