-
Notifications
You must be signed in to change notification settings - Fork 0
/
print.h
33 lines (25 loc) · 867 Bytes
/
print.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef _PRINT_H_
#define _PRINT_H_
#include "main.h"
#include "client.h"
#include "auction.h"
#define MESSAGE_LENGHT 64
void PrintWrongPriceBuy (struct banker *);
void PrintWrongItemBuy (struct banker *);
void PrintWrongPriceSell (struct banker *);
void PrintWrongItemSell (struct banker *);
void PrintCantCreateProd (struct banker *);
void PrintWillCreateProd (struct banker *);
void PrintBankrupt (struct client *);
void PrintMadeProd (struct client *, int i);
void PrintGameNotStarted (int);
void PrintServerInfo (int, int);
void PrintDescriptors (int *, int);
void PrintToFDSuccessConnect (int);
void PrintToAll (struct clientlist *, char *);
void PrintSuccessBuy (struct clientlist *);
void PrintSuccessSell (struct clientlist *);
void PrintSuccessBuild (struct clientlist *);
void PrintTurnOn (struct clientlist *);
void PrintComing (int, int);
#endif