~ubuntu-branches/ubuntu/maverick/crossfire-client/maverick

« back to all changes in this revision

Viewing changes to common/proto.h

  • Committer: Bazaar Package Importer
  • Author(s): Kari Pahula
  • Date: 2007-04-13 21:15:44 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070413211544-vjo6zesj6g0wgmwf
Tags: 1.10.0-1
* New upstream release
* Install the README, README-dev and TODO files specific to the GTK2
  client to the corresponding package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
int init_connection(char *host, int port);
4
4
void negotiate_connection(int sound);
5
5
/* commands.c */
6
 
void ReplyInfoCmd(char *buf, int len);
 
6
void ReplyInfoCmd(uint8 *buf, int len);
7
7
void SetupCmd(char *buf, int len);
8
8
void ExtendedInfoSetCmd(char *data, int len);
9
9
void AddMeFail(char *data, int len);
36
36
void MapExtendedCmd(unsigned char *data, int len);
37
37
void MagicMapCmd(unsigned char *data, int len);
38
38
void SinkCmd(unsigned char *data, int len);
39
 
void TickCmd(char *buf, int len);
 
39
void TickCmd(uint8 *data, int len);
40
40
/* image.c */
41
41
void init_common_cache_data(void);
42
42
void requestsmooth(int pnum);
48
48
void Face2Cmd(uint8 *data, int len);
49
49
void ImageCmd(uint8 *data, int len);
50
50
void Image2Cmd(uint8 *data, int len);
51
 
void display_newpng(long face, uint8 *buf, long buflen, int setnum);
52
 
void get_image_info(char *data, int len);
53
 
void get_image_sums(uint8 *data, int len);
 
51
void display_newpng(int face, uint8 *buf, int buflen, int setnum);
 
52
void get_image_info(uint8 *data, int len);
 
53
void get_image_sums(char *data, int len);
54
54
/* init.c */
55
55
void VersionCmd(char *data, int len);
56
56
void SendVersion(ClientSocket csock);
88
88
void mapdata_set_check_space(int x, int y);
89
89
void mapdata_set_darkness(int x, int y, int darkness);
90
90
void mapdata_set_smooth(int x, int y, int smooth, int layer);
 
91
void mapdata_clear_old(int x, int y);
91
92
void mapdata_set_face_layer(int x, int y, sint16 face, int layer);
92
93
void mapdata_set_anim_layer(int x, int y, uint16 anim, uint8 anim_speed, int layer);
93
94
void mapdata_scroll(int dx, int dy);
117
118
void unLogChildPipe(ChildProcess *child, int flag);
118
119
ChildProcess *raiseChild(char *name, int flag);
119
120
/* newsocket.c */
120
 
void SockList_Init(SockList *sl, char *buf);
 
121
void SockList_Init(SockList *sl, uint8 *buf);
121
122
void SockList_AddChar(SockList *sl, char c);
122
123
void SockList_AddShort(SockList *sl, uint16 data);
123
124
void SockList_AddInt(SockList *sl, uint32 data);