mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
29 lines
443 B
C
29 lines
443 B
C
![]() |
/*
|
||
|
GameSpy GT2 SDK
|
||
|
Dan "Mr. Pants" Schoenblum
|
||
|
dan@gamespy.com
|
||
|
|
||
|
Copyright 2002 GameSpy Industries, Inc
|
||
|
|
||
|
devsupport@gamespy.com
|
||
|
*/
|
||
|
|
||
|
#ifndef _GT2_UTILITY_H_
|
||
|
#define _GT2_UTILITY_H_
|
||
|
|
||
|
#include "gt2Main.h"
|
||
|
|
||
|
void gti2MessageCheck(const GT2Byte ** message, int * len);
|
||
|
|
||
|
#ifdef RECV_LOG
|
||
|
void gti2LogMessage
|
||
|
(
|
||
|
unsigned int fromIP, unsigned short fromPort,
|
||
|
unsigned int toIP, unsigned short toPort,
|
||
|
const GT2Byte * message, int len
|
||
|
);
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|