| 1123 | } |
| 1124 | |
| 1125 | int STDCALL CalcPar( |
| 1126 | DdTableDeal tableDeal, |
| 1127 | int vulnerable, |
| 1128 | DdTableResults * tablep, |
| 1129 | ParResults * presp) |
| 1130 | { |
| 1131 | |
| 1132 | int res; |
| 1133 | |
| 1134 | res = CalcDDtable(tableDeal, tablep); |
| 1135 | |
| 1136 | if (res != 1) |
| 1137 | return res; |
| 1138 | |
| 1139 | res = Par(tablep, presp, vulnerable); |
| 1140 | |
| 1141 | return res; |
| 1142 | } |
| 1143 | |
| 1144 | |
| 1145 | int STDCALL DealerParBin( |
no test coverage detected