home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 1: Collection A / 17Bit_Collection_A.iso / files / 1183.dms / 1183.adf / Spades / Spades.proto < prev    next >
Text File  |  1991-07-17  |  776b  |  34 lines

  1. /* Prototypes for functions defined in spades.c */
  2. int main(void);
  3. void PError(char *s);
  4. void WrapUp(void);
  5. void Spades(void);
  6. void Title(void);
  7. int FindDealer(void);
  8. void SetUpScreen(void);
  9. void InitVars(void);
  10. void DealCards(void);
  11. void ShowHand(void);
  12. void GetBids(void);
  13. int GetPlayerBid(void);
  14. int CalcBid(int player);
  15. void PlayHand(void);
  16. int TakeTrick(void);
  17. int GetPlayerCard(void);
  18. BOOL ValidCard(int card);
  19. void CountCards(int player);
  20. void SuggestCard(void);
  21. int GetCompCard(int player);
  22. void CalcLead(int player);
  23. void CalcFollow(int player);
  24. void PrintBids(void);
  25. void PrintScore(void);
  26. void PrintTricks(void);
  27. void ReadMouse(void);
  28. void DrawCard(int x,
  29.               int y,
  30.               int card);
  31. void FinishRoutine(void);
  32. void itoa(int n,
  33.           char *s);
  34.