source: network-game/common/message.h@ e084950

Last change on this file since e084950 was e084950, checked in by dportnoy <dmp1488@…>, 12 years ago

Converted the server to use sendMessage and receiveMessage and it now asks the user to guess a number between 1 and 1000

  • Property mode set to 100644
File size: 291 bytes
Line 
1#ifndef _MESAGE_H
2#define _MESSAGE__H
3
4#define MSG_TYPE_SOMETHING 1000
5
6typedef struct
7{
8 short type;
9 char buffer[256];
10} NETWORK_MSG;
11
12int sendMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *dest);
13
14int receiveMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *dest);
15
16#endif
Note: See TracBrowser for help on using the repository browser.