public static void setHands(table t) { DLLsetAllHands(ref t); }
public static extern void DLLtakeScores(ref table t);
public static extern void DLLclearTable(ref table t);
public static extern void DLLplayerTurn(ref table t, ref deck d, byte ans);
public static extern void DLLdealerTurn(ref table t, ref deck d);
public static extern void setChips(ref table t, int plyr, int chips);
public static extern void setBet(ref table t, int bet);
public static extern int getChips(ref table t, int plyr);
public static extern void DLLdealStartingHands(ref table t, ref deck d);
public static extern void DLLsetAllHands(ref table t);
public static extern void DLLcleanUp(ref table t, ref deck d);
public static extern void DLL_initTable(ref table t, int NO_OF_PLAYERS, int NO_OF_COMPS);