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

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

Added the player class, added a list of logged-in players, and changed the makefile to work properly, and made git ignore all build artifacts

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